diff options
Diffstat (limited to 'php/src/php5')
-rw-r--r-- | php/src/php5/Operation.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/php/src/php5/Operation.cpp b/php/src/php5/Operation.cpp index ebbf863dbd5..abe19021e27 100644 --- a/php/src/php5/Operation.cpp +++ b/php/src/php5/Operation.cpp @@ -97,7 +97,7 @@ typedef IceUtil::Handle<OperationI> OperationIPtr; // // The base class for client-side invocations. // -class Invocation : virtual public IceUtil::Shared +class Invocation : public virtual IceUtil::Shared { public: @@ -119,7 +119,7 @@ typedef IceUtil::Handle<Invocation> InvocationPtr; // TypedInvocation uses the information in the given operation to validate, marshal, and unmarshal // parameters and exceptions. // -class TypedInvocation : virtual public Invocation +class TypedInvocation : public virtual Invocation { public: @@ -139,7 +139,7 @@ protected: // // A synchronous typed invocation. // -class SyncTypedInvocation : virtual public TypedInvocation +class SyncTypedInvocation : public virtual TypedInvocation { public: |