summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2018-03-12 21:26:07 +0100
committerGitHub <noreply@github.com>2018-03-12 21:26:07 +0100
commitba891f62e7f7d1d5255cbff26bf31f19d299a028 (patch)
tree359c6427509e251529783e9ec870d1d9d495b422
parent5a4a08e16062d6ecbf0e599fc2bdb26f103e72d3 (diff)
parent2ea8eaff34b62be1b38c3291779bae72a3dd3e56 (diff)
downloadATCD-ba891f62e7f7d1d5255cbff26bf31f19d299a028.tar.gz
Merge pull request #593 from jwillemsen/jwi-comp38
Sun Studio 5.13 and older can't handle this
-rw-r--r--ACE/tests/Compiler_Features_38_Test.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/ACE/tests/Compiler_Features_38_Test.cpp b/ACE/tests/Compiler_Features_38_Test.cpp
index 31a02190573..73c40644253 100644
--- a/ACE/tests/Compiler_Features_38_Test.cpp
+++ b/ACE/tests/Compiler_Features_38_Test.cpp
@@ -15,6 +15,11 @@
# define ACE_DISABLE_TEST
#endif
+// Sun Studio 5.13 and older can't handle this construct
+#if defined (__SUNPRO_CC) && (__SUNPRO_CC <= 0x5130)
+# define ACE_DISABLE_TEST
+#endif
+
#if !defined (ACE_DISABLE_TEST)
template <typename T>
class Foo_T