diff options
Diffstat (limited to 'shared/loki/Pimpl.h')
-rw-r--r-- | shared/loki/Pimpl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shared/loki/Pimpl.h b/shared/loki/Pimpl.h index 788f76d8..8254e3e2 100644 --- a/shared/loki/Pimpl.h +++ b/shared/loki/Pimpl.h @@ -101,7 +101,7 @@ public: T& operator*() { - return ptr_.operator*(); + return ptr_.operator * (); } const T* operator->() const @@ -111,7 +111,7 @@ public: const T& operator*() const { - return ptr_.operator*(); + return ptr_.operator * (); } Pointer& wrapped() @@ -136,7 +136,7 @@ private: template<class T, typename Pointer = ConstPropPtr<T> > struct PimplOwner { - Pimpl<T,Pointer> LOKI_INHERITED_PIMPL_NAME; + Pimpl<T, Pointer> LOKI_INHERITED_PIMPL_NAME; }; |