Update setup.hpp

Enable 'if constexpr' when c++17
This commit is contained in:
Tim R 2019-03-31 13:08:57 -07:00 committed by GitHub
parent 503a22960a
commit 658bbdb525
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -289,6 +289,11 @@
#if GLM_HAS_CONSTEXPR
# define GLM_CONSTEXPR constexpr
#if GLM_LANG_CXX17_FLAG
# define GLM_IF_CONSTEXPR constexpr
#else
# define GLM_IF_CONSTEXPR
#endif
#else
# define GLM_CONSTEXPR
#endif