summaryrefslogtreecommitdiff
path: root/Tests/OutOfSource/OutOfSourceSubdir/testlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/OutOfSource/OutOfSourceSubdir/testlib.h')
-rw-r--r--Tests/OutOfSource/OutOfSourceSubdir/testlib.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/Tests/OutOfSource/OutOfSourceSubdir/testlib.h b/Tests/OutOfSource/OutOfSourceSubdir/testlib.h
index 75c2d84fd7..bacf5a109a 100644
--- a/Tests/OutOfSource/OutOfSourceSubdir/testlib.h
+++ b/Tests/OutOfSource/OutOfSourceSubdir/testlib.h
@@ -1,11 +1,11 @@
#ifdef _WIN32
-# ifdef testlib_EXPORTS
-# define CM_TEST_LIB_EXPORT __declspec( dllexport )
-# else
-# define CM_TEST_LIB_EXPORT __declspec( dllimport )
-# endif
+#ifdef testlib_EXPORTS
+#define CM_TEST_LIB_EXPORT __declspec(dllexport)
#else
-# define CM_TEST_LIB_EXPORT
+#define CM_TEST_LIB_EXPORT __declspec(dllimport)
+#endif
+#else
+#define CM_TEST_LIB_EXPORT
#endif
CM_TEST_LIB_EXPORT float TestLib();