Standardize location of storage-class specifiers: Place at beginning of declarations

Justification: C99 specifies that doing otherwise is an obsolescent feature.
This commit is contained in:
MerryMage 2017-09-29 01:23:45 +01:00
parent b992e5f8ec
commit 29471be317
7 changed files with 7 additions and 7 deletions

View file

@ -22,7 +22,7 @@ using Thumb32Matcher = Matcher<Visitor, u32>;
template<typename V>
boost::optional<const Thumb32Matcher<V>&> DecodeThumb32(u32 instruction) {
const static std::vector<Thumb32Matcher<V>> table = {
static const std::vector<Thumb32Matcher<V>> table = {
#define INST(fn, name, bitstring) detail::detail<Thumb32Matcher<V>>::GetMatcher(fn, name, bitstring)