diff options
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/llcommon/owning_ptr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/owning_ptr.h b/indra/llcommon/owning_ptr.h index c0da245265..7cf8d3f0ba 100755 --- a/indra/llcommon/owning_ptr.h +++ b/indra/llcommon/owning_ptr.h @@ -65,7 +65,7 @@ public: T* operator->() const { return mPtr.operator->(); } private: - std::unique_ptr<T, std::function<void(T*)>> mPtr; + std::unique_ptr<T, deleter> mPtr; }; #endif /* ! defined(LL_OWNING_PTR_H) */ |