Removed support of boost static_assrt

This commit is contained in:
Christophe Riccio
2017-03-10 21:40:48 +01:00
parent 9f4971289c
commit bb4f6dc9d4
2 changed files with 3 additions and 5 deletions

View File

@@ -505,8 +505,6 @@
#if GLM_HAS_STATIC_ASSERT
# define GLM_STATIC_ASSERT(x, message) static_assert(x, message)
#elif defined(BOOST_STATIC_ASSERT)
# define GLM_STATIC_ASSERT(x, message) BOOST_STATIC_ASSERT(x)
#elif GLM_COMPILER & GLM_COMPILER_VC
# define GLM_STATIC_ASSERT(x, message) typedef char __CASSERT__##__LINE__[(x) ? 1 : -1]
#else