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 /csharp/src | |
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 'csharp/src')
-rw-r--r-- | csharp/src/Ice/DispatchInterceptor.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp/src/Ice/DispatchInterceptor.cs b/csharp/src/Ice/DispatchInterceptor.cs index 58a63672bd3..54e39251ac6 100644 --- a/csharp/src/Ice/DispatchInterceptor.cs +++ b/csharp/src/Ice/DispatchInterceptor.cs @@ -35,7 +35,7 @@ namespace Ice // // 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(current.encoding == null || (current.encoding.major == 0 && current.encoding.minor == 0)) { |