diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-08-25 11:28:20 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-08-25 11:28:20 +0200 |
commit | 4fa256d3d27adffcc6529136cad904f0fbd490b0 (patch) | |
tree | 7250a0b630cfc8400745be4bdf7dde6891943b8c /cpp/src/Ice/IncomingRequest.h | |
parent | removing JavaCompat.ice (diff) | |
download | ice-4fa256d3d27adffcc6529136cad904f0fbd490b0.tar.bz2 ice-4fa256d3d27adffcc6529136cad904f0fbd490b0.tar.xz ice-4fa256d3d27adffcc6529136cad904f0fbd490b0.zip |
C++ dispatching code fixes
- removed user exception check on the server side (ICE-6980)
- C++11 dipatch interceptor async callback (ICE-7263)
- Fixed slicing/objects test in various mapping (removed Forward.ice)
Diffstat (limited to 'cpp/src/Ice/IncomingRequest.h')
-rw-r--r-- | cpp/src/Ice/IncomingRequest.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/cpp/src/Ice/IncomingRequest.h b/cpp/src/Ice/IncomingRequest.h index 64082b010b7..b9e28d1df1c 100644 --- a/cpp/src/Ice/IncomingRequest.h +++ b/cpp/src/Ice/IncomingRequest.h @@ -23,15 +23,16 @@ namespace IceInternal class ICE_API IncomingRequest : public Ice::Request { public: - IncomingRequest(Incoming& in) : - _in(in) + + IncomingRequest(Incoming& in) : _in(in) { } virtual const Ice::Current& getCurrent(); - + Incoming& _in; }; + } #endif |