mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-05 22:18:16 +01:00
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:
parent
b992e5f8ec
commit
29471be317
7 changed files with 7 additions and 7 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue