diff options
author | Bernard Normier <bernard@zeroc.com> | 2017-05-19 18:54:14 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2017-05-19 18:54:14 -0400 |
commit | 47f53dcf02cdecef3959f61e9410009962cd798b (patch) | |
tree | d63091574ff20f90dfead5da94e6b31f62e96113 /cpp/include | |
parent | Fixed typo (diff) | |
download | ice-47f53dcf02cdecef3959f61e9410009962cd798b.tar.bz2 ice-47f53dcf02cdecef3959f61e9410009962cd798b.tar.xz ice-47f53dcf02cdecef3959f61e9410009962cd798b.zip |
Replaced virtual public by public virtual
Diffstat (limited to 'cpp/include')
-rw-r--r-- | cpp/include/Ice/OutgoingAsync.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/include/Ice/OutgoingAsync.h b/cpp/include/Ice/OutgoingAsync.h index 84a11e84a4c..33e0d4b2e14 100644 --- a/cpp/include/Ice/OutgoingAsync.h +++ b/cpp/include/Ice/OutgoingAsync.h @@ -57,7 +57,7 @@ protected: // responsible for the handling of the output stream and the child // invocation observer. // -class ICE_API OutgoingAsyncBase : virtual public OutgoingAsyncCompletionCallback, +class ICE_API OutgoingAsyncBase : public virtual OutgoingAsyncCompletionCallback, #ifdef ICE_CPP11_MAPPING public std::enable_shared_from_this<OutgoingAsyncBase> #else @@ -311,7 +311,7 @@ namespace IceInternal #ifdef ICE_CPP11_MAPPING -class ICE_API LambdaInvoke : virtual public OutgoingAsyncCompletionCallback +class ICE_API LambdaInvoke : public virtual OutgoingAsyncCompletionCallback { public: @@ -336,7 +336,7 @@ protected: }; template<typename Promise> -class PromiseInvoke : virtual public OutgoingAsyncCompletionCallback +class PromiseInvoke : public virtual OutgoingAsyncCompletionCallback { public: @@ -721,7 +721,7 @@ private: Callback _sent; }; -class CallbackCompletion : virtual public OutgoingAsyncCompletionCallback +class CallbackCompletion : public virtual OutgoingAsyncCompletionCallback { public: |