diff options
author | Benoit Foucher <benoit@zeroc.com> | 2019-07-11 18:19:52 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2019-07-11 18:19:52 +0200 |
commit | 3184f261238e75470e18fd9441524eddcb4847df (patch) | |
tree | 6897211e132003d3605c386618d8643429df2671 /cpp/src/Ice | |
parent | Check for NodeJS to build/run JS tests (diff) | |
download | ice-3184f261238e75470e18fd9441524eddcb4847df.tar.bz2 ice-3184f261238e75470e18fd9441524eddcb4847df.tar.xz ice-3184f261238e75470e18fd9441524eddcb4847df.zip |
Fixed C++11 issue with previous Ice/interceptor test fix
Diffstat (limited to 'cpp/src/Ice')
-rw-r--r-- | cpp/src/Ice/DispatchInterceptor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/DispatchInterceptor.cpp b/cpp/src/Ice/DispatchInterceptor.cpp index ae12e77f900..78e79311631 100644 --- a/cpp/src/Ice/DispatchInterceptor.cpp +++ b/cpp/src/Ice/DispatchInterceptor.cpp @@ -26,7 +26,7 @@ Ice::DispatchInterceptor::_iceDispatch(IceInternal::Incoming& in, const Current& // // If the input parameters weren't read, make sure we skip them here. It's needed to read the // encoding version used by the client to eventually marshal the user exception. It's also needed - // if we are dispatch a batch oneway request to read the next batch request. + // if we dispatch a batch oneway request to read the next batch request. // if(in.getCurrent().encoding.major == 0 && in.getCurrent().encoding.minor == 0) { |