summaryrefslogtreecommitdiff
path: root/ACE/tests/Bug_3709_Regression_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/Bug_3709_Regression_Test.cpp')
-rw-r--r--ACE/tests/Bug_3709_Regression_Test.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/ACE/tests/Bug_3709_Regression_Test.cpp b/ACE/tests/Bug_3709_Regression_Test.cpp
index 7efaba85d29..ef4607c2d4e 100644
--- a/ACE/tests/Bug_3709_Regression_Test.cpp
+++ b/ACE/tests/Bug_3709_Regression_Test.cpp
@@ -18,6 +18,12 @@ using namespace std;
#define MSVC_71_OR_OLDER
#endif
+// clang version 2.9 crashes when trying to compile the test
+// http://llvm.org/bugs/show_bug.cgi?id=9643
+#ifdef __clang__
+#define MSVC_71_OR_OLDER
+#endif
+
#ifndef MSVC_71_OR_OLDER
template<template<typename U, typename = std::allocator<U> > class container, typename DT>
container<DT> initializer(const DT &d)