mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 02:29:00 +08:00
18 lines
816 B
Diff
18 lines
816 B
Diff
diff --git a/glm/detail/setup.hpp b/glm/detail/setup.hpp
|
|
index 315eb346..21ccebf4 100644
|
|
--- a/glm/detail/setup.hpp
|
|
+++ b/glm/detail/setup.hpp
|
|
@@ -595,7 +595,11 @@
|
|
# define GLM_DEPRECATED __declspec(deprecated)
|
|
# define GLM_ALIGNED_TYPEDEF(type, name, alignment) typedef __declspec(align(alignment)) type name
|
|
#elif GLM_COMPILER & (GLM_COMPILER_GCC | GLM_COMPILER_CLANG | GLM_COMPILER_INTEL)
|
|
-# define GLM_DEPRECATED __attribute__((__deprecated__))
|
|
+# if GLM_LANG & GLM_LANG_CXX14_FLAG
|
|
+# define GLM_DEPRECATED [[deprecated]]
|
|
+# else
|
|
+# define GLM_DEPRECATED __attribute__((__deprecated__))
|
|
+# endif
|
|
# define GLM_ALIGNED_TYPEDEF(type, name, alignment) typedef type name __attribute__((aligned(alignment)))
|
|
#elif (GLM_COMPILER & GLM_COMPILER_CUDA) || (GLM_COMPILER & GLM_COMPILER_HIP)
|
|
# define GLM_DEPRECATED
|