diff --git a/include/loki/SmartPtr.h b/include/loki/SmartPtr.h index 9645611..8a9f7ef 100644 --- a/include/loki/SmartPtr.h +++ b/include/loki/SmartPtr.h @@ -295,7 +295,7 @@ namespace Loki explicit LockedStorage( const StoredType & p ) : pointee_( p ) {} - PointerType operator->() + PointerType operator->() const { return Locker< T >( pointee_ ); }