diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2016-09-18 09:38:01 +0900 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2016-09-18 09:38:01 +0900 |
commit | dc8479928c5aee4c6ad6fe4f59006fb604cee701 (patch) | |
tree | 569a7f13128450bbab973236615587ff00bced5f /src/common/platform.h | |
parent | fe948af0952d7badacbce62a8e35a3a1421245ba (diff) |
Sources: Run clang-format on everything.
Diffstat (limited to 'src/common/platform.h')
-rw-r--r-- | src/common/platform.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/platform.h b/src/common/platform.h index 9ba4db11bb..c62fb7c8f8 100644 --- a/src/common/platform.h +++ b/src/common/platform.h @@ -28,7 +28,7 @@ // Platform detection #if defined(ARCHITECTURE_x86_64) || defined(__aarch64__) - #define EMU_ARCH_BITS 64 +#define EMU_ARCH_BITS 64 #elif defined(__i386) || defined(_M_IX86) || defined(__arm__) || defined(_M_ARM) - #define EMU_ARCH_BITS 32 +#define EMU_ARCH_BITS 32 #endif |