aboutsummaryrefslogtreecommitdiffstats
path: root/ws_symbol_export.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2013-03-01 06:44:37 +0000
committerAnders Broman <anders.broman@ericsson.com>2013-03-01 06:44:37 +0000
commitc5f9ea23136a2bf390450a191aa8820f3374c265 (patch)
treee7b8cadc9ff010c5523fabb1028a1376784637bd /ws_symbol_export.h
parent8a6d78e053b74781a63c7a1bf3b54a4035796b1b (diff)
Fix warning: C++ style comments are not allowed in ISO C90 [enabled by default]
svn path=/trunk/; revision=47971
Diffstat (limited to 'ws_symbol_export.h')
-rw-r--r--ws_symbol_export.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ws_symbol_export.h b/ws_symbol_export.h
index 599ac2e64a..fc257ce8e3 100644
--- a/ws_symbol_export.h
+++ b/ws_symbol_export.h
@@ -29,13 +29,13 @@
#ifdef __GNUC__
#define WS_DLL_PUBLIC __attribute__ ((dllexport))
#else /* ! __GNUC__ */
-#define WS_DLL_PUBLIC __declspec(dllexport) // Note: actually gcc seems to also support this syntax.
+#define WS_DLL_PUBLIC __declspec(dllexport) /* Note: actually gcc seems to also support this syntax. */
#endif /* __GNUC__ */
#else
#ifdef __GNUC__
#define WS_DLL_PUBLIC __attribute__ ((dllimport))
#elif ! (defined ENABLE_STATIC) /* ! __GNUC__ */
-#define WS_DLL_PUBLIC __declspec(dllimport) // Note: actually gcc seems to also support this syntax.
+#define WS_DLL_PUBLIC __declspec(dllimport) /* Note: actually gcc seems to also support this syntax. */
#else /* ! __GNUC__ && ENABLE_STATIC */
#define WS_DLL_PUBLIC
#endif /* __GNUC__ */