From 47f53dcf02cdecef3959f61e9410009962cd798b Mon Sep 17 00:00:00 2001 From: Bernard Normier Date: Fri, 19 May 2017 18:54:14 -0400 Subject: Replaced virtual public by public virtual --- php/src/php5/Operation.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'php/src/php5') 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 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 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: -- cgit v1.2.3