diff options
Diffstat (limited to 'cpp/include/IceUtil/Config.h')
-rw-r--r-- | cpp/include/IceUtil/Config.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/include/IceUtil/Config.h b/cpp/include/IceUtil/Config.h index 2f9e6a5530e..aa86962edd5 100644 --- a/cpp/include/IceUtil/Config.h +++ b/cpp/include/IceUtil/Config.h @@ -126,11 +126,11 @@ // Let's use these extensions with Ice: // #if defined(ICE_API_EXPORTS) -# define ICE_UTIL_API ICE_DECLSPEC_EXPORT +# define ICE_API ICE_DECLSPEC_EXPORT #elif defined(ICE_STATIC_LIBS) -# define ICE_UTIL_API /**/ +# define ICE_API /**/ #else -# define ICE_UTIL_API ICE_DECLSPEC_IMPORT +# define ICE_API ICE_DECLSPEC_IMPORT #endif @@ -188,7 +188,7 @@ #endif #ifdef __IBMCPP__ -// TODO: better fix for this warning + // TODO: better fix for this warning # pragma report(disable, "1540-0198") // private inheritance without private keyword #endif @@ -252,7 +252,7 @@ namespace IceUtil // // By deriving from this class, other classes are made non-copyable. // -class ICE_UTIL_API noncopyable +class ICE_API noncopyable { protected: |