diff options
author | Bernard Normier <bernard@zeroc.com> | 2018-11-01 17:14:06 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2018-11-01 17:14:06 -0400 |
commit | 3a763985c52246b1b804cdd7ee7bd49a82e76bd3 (patch) | |
tree | e35b1b0bdf6715ed784d0c86482355528bee81ee /php/src/php7/Operation.cpp | |
parent | Visual Studio and msbuild updates (diff) | |
download | ice-3a763985c52246b1b804cdd7ee7bd49a82e76bd3.tar.bz2 ice-3a763985c52246b1b804cdd7ee7bd49a82e76bd3.tar.xz ice-3a763985c52246b1b804cdd7ee7bd49a82e76bd3.zip |
Increase Visual Studio warning level to Level4
Fixes #223.
Diffstat (limited to 'php/src/php7/Operation.cpp')
-rw-r--r-- | php/src/php7/Operation.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/php/src/php7/Operation.cpp b/php/src/php7/Operation.cpp index 2a460c44285..386f065e9e1 100644 --- a/php/src/php7/Operation.cpp +++ b/php/src/php7/Operation.cpp @@ -96,7 +96,7 @@ typedef IceUtil::Handle<OperationI> OperationIPtr; // // The base class for client-side invocations. // -class Invocation : public virtual IceUtil::Shared +class Invocation : public IceUtil::Shared { public: @@ -115,7 +115,7 @@ typedef IceUtil::Handle<Invocation> InvocationPtr; // TypedInvocation uses the information in the given operation to validate, marshal, and unmarshal // parameters and exceptions. // -class TypedInvocation : public virtual Invocation +class TypedInvocation : public Invocation { public: @@ -135,7 +135,7 @@ protected: // // A synchronous typed invocation. // -class SyncTypedInvocation : public virtual TypedInvocation +class SyncTypedInvocation : public TypedInvocation { public: @@ -717,7 +717,7 @@ IcePHP::TypedInvocation::checkTwowayOnly(const Ice::ObjectPrx& proxy) const // IcePHP::SyncTypedInvocation::SyncTypedInvocation(const Ice::ObjectPrx& prx, const CommunicatorInfoPtr& communicator, const OperationIPtr& op) : - Invocation(prx, communicator), TypedInvocation(prx, communicator, op) + TypedInvocation(prx, communicator, op) { } |