Fix warning: C++ style comments are not allowed in ISO C90 [enabled by default]
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 1 Mar 2013 06:44:37 +0000 (06:44 +0000)
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 1 Mar 2013 06:44:37 +0000 (06:44 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@47971 f5534014-38df-0310-8fa8-9805f1628bb7

ws_symbol_export.h

index 599ac2e64a398229ac6d59857697436884c2b72f..fc257ce8e388f3f8cc47d7aac476b7cd5d5b6314 100644 (file)
     #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__ */