summaryrefslogtreecommitdiff
path: root/src/common/bit_field.h
diff options
context:
space:
mode:
authorGravatar Emmanuel Gil Peyrot2016-04-30 16:34:51 +0100
committerGravatar Emmanuel Gil Peyrot2016-04-30 17:02:41 +0100
commit691a42fe98954c247a8b7e9305a3e9ca5c04d40c (patch)
tree52b6a286b6609675cbc69c63b3aa9f695ea95f0f /src/common/bit_field.h
parentLCD: Remove unneeded #undef with no matching #define. (diff)
downloadyuzu-691a42fe98954c247a8b7e9305a3e9ca5c04d40c.tar.gz
yuzu-691a42fe98954c247a8b7e9305a3e9ca5c04d40c.tar.xz
yuzu-691a42fe98954c247a8b7e9305a3e9ca5c04d40c.zip
VideoCore: Run include-what-you-use and fix most includes.
Diffstat (limited to '')
-rw-r--r--src/common/bit_field.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/bit_field.h b/src/common/bit_field.h
index 371eb17a1..4748999ed 100644
--- a/src/common/bit_field.h
+++ b/src/common/bit_field.h
@@ -186,5 +186,5 @@ private:
186#pragma pack() 186#pragma pack()
187 187
188#if (__GNUC__ >= 5) || defined(__clang__) || defined(_MSC_VER) 188#if (__GNUC__ >= 5) || defined(__clang__) || defined(_MSC_VER)
189static_assert(std::is_trivially_copyable<BitField<0, 1, u32>>::value, "BitField must be trivially copyable"); 189static_assert(std::is_trivially_copyable<BitField<0, 1, unsigned>>::value, "BitField must be trivially copyable");
190#endif 190#endif