diff test/plain_c++/test_main.cc @ 348:da4b267c10bf r1.1-RC3

- test code fixes and cleanups for win 32
author Tassilo Philipp
date Wed, 08 Jan 2020 17:23:24 +0100
parents dd78bd0152af
children ddfb9577a00e
line wrap: on
line diff
--- a/test/plain_c++/test_main.cc	Wed Jan 08 17:10:17 2020 +0100
+++ b/test/plain_c++/test_main.cc	Wed Jan 08 17:23:24 2020 +0100
@@ -267,7 +267,7 @@
 }
 
 
-#ifdef DC__OS_Win32
+#if defined(DC__OS_Win32)
 
 int testCallThisMS()
 {
@@ -311,7 +311,7 @@
   bool r = true;
 
   r = testCallThisC() && r;
-#if defined(DC__C_MSVC)
+#if defined(DC__OS_Win32)
   r = testCallThisMS() && r;
 #endif