Make Debug configuration compile once more.

This commit is contained in:
Shyotl
2020-04-16 00:49:42 -05:00
parent 257086cbfc
commit 132db6225e
7 changed files with 17 additions and 4 deletions

View File

@@ -350,6 +350,8 @@ inline std::ostream& operator<<(std::ostream& s, const LLVector4a& v)
return s;
}
#if !defined(LL_DEBUG)
static_assert(std::is_trivial<LLVector4a>::value, "LLVector4a must be a be a trivial type");
static_assert(std::is_standard_layout<LLVector4a>::value, "LLVector4a must be a standard layout type");
#endif
#endif