diff options
Diffstat (limited to 'Tests/CxxOnly/testCxxModule.cxx')
-rw-r--r-- | Tests/CxxOnly/testCxxModule.cxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Tests/CxxOnly/testCxxModule.cxx b/Tests/CxxOnly/testCxxModule.cxx index dd16d2b..039e8bb 100644 --- a/Tests/CxxOnly/testCxxModule.cxx +++ b/Tests/CxxOnly/testCxxModule.cxx @@ -1,6 +1,9 @@ #ifdef _WIN32 -# define TEST_EXPORT __declspec(dllexport) +#define TEST_EXPORT __declspec(dllexport) #else -# define TEST_EXPORT +#define TEST_EXPORT #endif -TEST_EXPORT int testCxxModule(void) { return 0; } +TEST_EXPORT int testCxxModule(void) +{ + return 0; +} |