summaryrefslogtreecommitdiff
path: root/ACE/tests
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2018-08-16 12:13:05 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2018-08-16 12:13:05 +0200
commit97c91c6f403cca708bfd46f03b0facd04a0c14f1 (patch)
treef933d10a8834fd9a001b012dcc3d626334f447e8 /ACE/tests
parent0bb2f07ae39fd19ad96e8db8895fad69e42e09a4 (diff)
downloadATCD-97c91c6f403cca708bfd46f03b0facd04a0c14f1.tar.gz
Updated msvc check, works now with Visual Studio 2017
* ACE/tests/Compiler_Features_27_Test.cpp:
Diffstat (limited to 'ACE/tests')
-rw-r--r--ACE/tests/Compiler_Features_27_Test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/tests/Compiler_Features_27_Test.cpp b/ACE/tests/Compiler_Features_27_Test.cpp
index 3e0dbfc3e75..d8a58d0ee78 100644
--- a/ACE/tests/Compiler_Features_27_Test.cpp
+++ b/ACE/tests/Compiler_Features_27_Test.cpp
@@ -25,7 +25,7 @@ run_main (int, ACE_TCHAR *[])
ACE_START_TEST (ACE_TEXT("Compiler_Features_27_Test"));
// Visual Studio 2015 has a small issue with this construct
-#if !defined (ACE_WIN32_VC14)
+#if !(defined (_MSC_VER) && (_MSC_VER < 1910))
Foo any;
any <<= std::move("abc");
#endif