From c5f9ea23136a2bf390450a191aa8820f3374c265 Mon Sep 17 00:00:00 2001 From: Anders Broman Date: Fri, 1 Mar 2013 06:44:37 +0000 Subject: Fix warning: C++ style comments are not allowed in ISO C90 [enabled by default] svn path=/trunk/; revision=47971 --- ws_symbol_export.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ws_symbol_export.h') 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__ */ -- cgit v1.2.3