Update setup.hpp

This commit is contained in:
Tim R 2019-03-31 15:00:24 -07:00 committed by GitHub
parent b0f6910f0c
commit 94f685c111
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -297,14 +297,14 @@
#if GLM_HAS_CONSTEXPR
# if (GLM_COMPILER & GLM_COMPILER_CLANG )
# if __has_feature(cxx_if_constexpr)
# define GLM_IF_CONSTEXPR constexpr
# define GLM_IF_CONSTEXPR if constexpr
# else
# define GLM_IF_CONSTEXPR
# define GLM_IF_CONSTEXPR if
# endif
# elif GLM_LANG_CXX17_FLAG
# define GLM_IF_CONSTEXPR constexpr
# define GLM_IF_CONSTEXPR if constexpr
# else
# define GLM_IF_CONSTEXPR
# define GLM_IF_CONSTEXPR if
#endif
//