Fixed build

This commit is contained in:
Christophe Riccio 2019-09-07 14:09:36 +02:00
parent a5fd70aed8
commit 2bd4217685

View File

@ -294,8 +294,12 @@
//
#if GLM_HAS_CONSTEXPR
# if (GLM_COMPILER & GLM_COMPILER_CLANG) && __has_feature(cxx_if_constexpr)
# define GLM_HAS_IF_CONSTEXPR 1
# if (GLM_COMPILER & GLM_COMPILER_CLANG)
# if __has_feature(cxx_if_constexpr)
# define GLM_HAS_IF_CONSTEXPR 1
# else
# define GLM_HAS_IF_CONSTEXPR 0
# endif
# elif (GLM_LANG & GLM_LANG_CXX17_FLAG)
# define GLM_HAS_IF_CONSTEXPR 1
# else