summaryrefslogtreecommitdiff
path: root/src/common/bit_field.h
diff options
context:
space:
mode:
authorGravatar bunnei2016-05-01 17:44:57 -0400
committerGravatar bunnei2016-05-01 17:44:57 -0400
commit15d0e982678d6151bb058fbb8ea0f39b7ffa688a (patch)
tree716ea2ff8d136622183261274564eeb03aed5c5f /src/common/bit_field.h
parentMerge pull request #1745 from JayFoxRox/fix-const_color (diff)
parentVideoCore: Run include-what-you-use and fix most includes. (diff)
downloadyuzu-15d0e982678d6151bb058fbb8ea0f39b7ffa688a.tar.gz
yuzu-15d0e982678d6151bb058fbb8ea0f39b7ffa688a.tar.xz
yuzu-15d0e982678d6151bb058fbb8ea0f39b7ffa688a.zip
Merge pull request #1741 from linkmauve/iwyu-video_core
Fix video_core includes (and dependencies) using include-what-you-use
Diffstat (limited to 'src/common/bit_field.h')
-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