01fe29c78d
c++20.patch.0 got obseleted in
6fdeff4d67
Change-Id: I8698968b55f299c55777fe280b3eda9e2bea9cdc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167268
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
14 lines
508 B
Text
14 lines
508 B
Text
# "#pragma intrinsic" not (yet?) handled in the "if (LangOpts.MicrosoftExt)"
|
|
# block in Preprocessor::RegisterBuiltinPragmas in Clang's lib/Lex/Pragma.cpp:
|
|
--- glm/detail/func_integer.inl
|
|
+++ glm/detail/func_integer.inl
|
|
@@ -3,7 +3,9 @@
|
|
#include "_vectorize.hpp"
|
|
#if(GLM_ARCH & GLM_ARCH_X86 && GLM_COMPILER & GLM_COMPILER_VC)
|
|
# include <intrin.h>
|
|
+#if !defined __clang__
|
|
# pragma intrinsic(_BitScanReverse)
|
|
+#endif
|
|
#endif//(GLM_ARCH & GLM_ARCH_X86 && GLM_COMPILER & GLM_COMPILER_VC)
|
|
#include <limits>
|
|
|