Fix missed changes for is_trivially_copyable and make gcc happy about them (#4)

This commit is contained in:
Router Gray
2019-04-13 15:43:47 -05:00
committed by Liru Færs
parent 5e12a9d057
commit fd6b367746
2 changed files with 3 additions and 3 deletions

View File

@@ -127,6 +127,6 @@ public:
inline bool isOkRotation() const;
} LL_ALIGN_POSTFIX(16);
static_assert(std::is_trivially_copyable<LLMatrix3a>{}, "LLMatrix3a must be a trivially copyable type");
static_assert(std::is_trivially_copyable<LLRotation>{}, "LLRotation must be a trivially copyable type");
static_assert(std::is_trivially_copyable<LLMatrix3a>::value, "LLMatrix3a must be a trivially copyable type");
static_assert(std::is_trivially_copyable<LLRotation>::value, "LLRotation must be a trivially copyable type");
#endif