diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-11-24 15:27:35 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-11-24 15:27:35 +0100 |
commit | d84bd81df94f57e9be067665bf17c7e855bf0787 (patch) | |
tree | 44dce621976ac45b565e60fa30823f08cd72e8c4 /cpp/src/Ice/Outgoing.cpp | |
parent | Fix for ICE-5751: fixed sync. requests to use monotonic time for invocation t... (diff) | |
download | ice-d84bd81df94f57e9be067665bf17c7e855bf0787.tar.bz2 ice-d84bd81df94f57e9be067665bf17c7e855bf0787.tar.xz ice-d84bd81df94f57e9be067665bf17c7e855bf0787.zip |
Fixed Windows build failure introduced by previous fix
Diffstat (limited to 'cpp/src/Ice/Outgoing.cpp')
-rw-r--r-- | cpp/src/Ice/Outgoing.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Ice/Outgoing.cpp b/cpp/src/Ice/Outgoing.cpp index be5a84e1f47..cce1086363d 100644 --- a/cpp/src/Ice/Outgoing.cpp +++ b/cpp/src/Ice/Outgoing.cpp @@ -101,7 +101,7 @@ Outgoing::Outgoing(IceProxy::Ice::Object* proxy, const string& operation, Operat _os.write(operation, false); - _os.write(static_cast<Byte>(mode)); + _os.write(static_cast<Ice::Byte>(mode)); if(context != 0) { @@ -169,7 +169,7 @@ Outgoing::sent() } void -Outgoing::completed(const Exception& ex) +Outgoing::completed(const Ice::Exception& ex) { Monitor<Mutex>::Lock sync(_monitor); //assert(_state <= StateInProgress); @@ -385,7 +385,7 @@ Outgoing::completed(BasicStream& is) _is.swap(is); - Byte replyStatus; + Ice::Byte replyStatus; _is.read(replyStatus); switch(replyStatus) |