mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
Clean up some struct indentations
Also cleaned up the indentations of some variable declarations.
This commit is contained in:
parent
40182a48a5
commit
ebb48d019e
50 changed files with 1357 additions and 1355 deletions
|
@ -29,7 +29,7 @@ struct ArraySizeImpl : public std::extent<T>
|
|||
#define b8(x) ( b4(x) | ( b4(x) >> 4) )
|
||||
#define b16(x) ( b8(x) | ( b8(x) >> 8) )
|
||||
#define b32(x) (b16(x) | (b16(x) >>16) )
|
||||
#define ROUND_UP_POW2(x) (b32(x - 1) + 1)
|
||||
#define ROUND_UP_POW2(x) (b32(x - 1) + 1)
|
||||
|
||||
#ifndef __GNUC_PREREQ
|
||||
#define __GNUC_PREREQ(a, b) 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue