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

@@ -104,7 +104,8 @@ private:
LL_ALIGN_16(LLVector4a mV);
} LL_ALIGN_POSTFIX(16);
#if !defined(LL_DEBUG)
static_assert(std::is_trivial<LLPlane>::value, "LLPlane must be a trivial type");
static_assert(std::is_standard_layout<LLPlane>::value, "LLPlane must be a standard layout type");
#endif
#endif // LL_LLPLANE_H