diff options
author | Benoit Foucher <benoit@zeroc.com> | 2012-10-08 16:40:05 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2012-10-08 16:40:05 +0200 |
commit | 584067449d1685602179d14570bbef1d160198ca (patch) | |
tree | 4d04010f9a682314b9d287e3a4e05dccc7445adb /cpp/src/IceStorm/Subscriber.cpp | |
parent | Remove auto_ptr instances introduced in mx branch (diff) | |
download | ice-584067449d1685602179d14570bbef1d160198ca.tar.bz2 ice-584067449d1685602179d14570bbef1d160198ca.tar.xz ice-584067449d1685602179d14570bbef1d160198ca.zip |
Fixed Win32 build issues, IceStorm test failure
Diffstat (limited to 'cpp/src/IceStorm/Subscriber.cpp')
-rwxr-xr-x | cpp/src/IceStorm/Subscriber.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/src/IceStorm/Subscriber.cpp b/cpp/src/IceStorm/Subscriber.cpp index 4733d93d296..d403cb67c1b 100755 --- a/cpp/src/IceStorm/Subscriber.cpp +++ b/cpp/src/IceStorm/Subscriber.cpp @@ -90,6 +90,9 @@ toSubscriberState(Subscriber::SubscriberState s) case Subscriber::SubscriberStateError: case Subscriber::SubscriberStateReaped: return IceStorm::Instrumentation::SubscriberStateError; + default: + assert(false); + return IceStorm::Instrumentation::SubscriberStateError; } } |