summaryrefslogtreecommitdiff
path: root/ACE/tests/Bug_3709_Regression_Test.cpp
diff options
context:
space:
mode:
authormitza <mitza@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2011-04-15 14:09:11 +0000
committermitza <mitza@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2011-04-15 14:09:11 +0000
commit4c3d2d4dd8e4345b120a4d841c8c758f0ff1a97d (patch)
tree99d2ecb0f3cc00fccdf3f84333e48aa94891e36b /ACE/tests/Bug_3709_Regression_Test.cpp
parent53c3a4b682e6b521bc7c66688e1f30534be7257f (diff)
downloadATCD-4c3d2d4dd8e4345b120a4d841c8c758f0ff1a97d.tar.gz
ChangeLogTag: Fri Apr 15 14:07:34 UTC 2011 Adam Mitz <mitza@ociweb.com>
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)