summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2019-09-24 19:33:09 +0200
committerGitHub <noreply@github.com>2019-09-24 19:33:09 +0200
commite464760adf43d239b277f74e1a7b58ffaa1f1058 (patch)
treed08eef31a47505c9b5005c0f85534e626f3dbd17
parent8835c90554d9e43a3f8504bff99c53768d98f609 (diff)
parent7bf9e27617d9cd491f28b993f7d7ea43740bb7fe (diff)
downloadATCD-e464760adf43d239b277f74e1a7b58ffaa1f1058.tar.gz
Merge pull request #962 from jwillemsen/jwi-clang9workaround
Workaround is still necessary with clang9
-rw-r--r--ACE/tests/Compiler_Features_32_Test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/tests/Compiler_Features_32_Test.cpp b/ACE/tests/Compiler_Features_32_Test.cpp
index 073ce2b8bbd..a7374894294 100644
--- a/ACE/tests/Compiler_Features_32_Test.cpp
+++ b/ACE/tests/Compiler_Features_32_Test.cpp
@@ -46,7 +46,7 @@ void A::clear ()
{
#if defined __clang__ && \
(defined __apple_build_version__ && __apple_build_version__ < 9100000 \
- || __clang_major__ <= 8)
+ || __clang_major__ <= 9)
#define CLANG_WORKAROUND
#endif