diff options
author | Bernard Normier <bernard@zeroc.com> | 2012-08-11 18:17:44 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2012-08-11 18:17:44 -0400 |
commit | fa8a62fc349754aec948ae20d7f5e1069f1e64c0 (patch) | |
tree | 5ea24de7eb4b8c178cddd5f191fb55004ff69d20 /cpp/src/Ice/EventHandler.h | |
parent | Fixed bug #ICE-4845 (ice_clone for IceUtil::Exception is now covariant) (diff) | |
download | ice-fa8a62fc349754aec948ae20d7f5e1069f1e64c0.tar.bz2 ice-fa8a62fc349754aec948ae20d7f5e1069f1e64c0.tar.xz ice-fa8a62fc349754aec948ae20d7f5e1069f1e64c0.zip |
Removed another disable VC++ disable warning from IceUtil/Config.h
Moved warnings to level 4 instead of straight disable
Added some _API decorations (for the disable-warning removal)
More IceUtil/Config.h clean-up
Diffstat (limited to 'cpp/src/Ice/EventHandler.h')
-rw-r--r-- | cpp/src/Ice/EventHandler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/EventHandler.h b/cpp/src/Ice/EventHandler.h index 3c7ece52a57..04200f2d29e 100644 --- a/cpp/src/Ice/EventHandler.h +++ b/cpp/src/Ice/EventHandler.h @@ -19,7 +19,7 @@ namespace IceInternal { -class EventHandler : virtual public ::IceUtil::Shared +class ICE_API EventHandler : virtual public ::IceUtil::Shared { public: @@ -54,7 +54,7 @@ public: protected: EventHandler(); - ICE_API virtual ~EventHandler(); + virtual ~EventHandler(); #if defined(ICE_USE_IOCP) || defined(ICE_OS_WINRT) SocketOperation _ready; |