diff options
Diffstat (limited to 'src/lib/util')
-rw-r--r-- | src/lib/util/delegate.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/util/delegate.h b/src/lib/util/delegate.h index 698632888cd..5e8f395776f 100644 --- a/src/lib/util/delegate.h +++ b/src/lib/util/delegate.h @@ -181,7 +181,7 @@ struct delegate_traits using static_func_type = _ReturnType(*)(_ClassType *, Params...); using static_ref_func_type = _ReturnType(*)(_ClassType &, Params...); using member_func_type = _ReturnType(_ClassType::*)(Params...); - using const_member_func_type = _ReturnType(_ClassType::*)(Params...) const; + using const_member_func_type = _ReturnType(_ClassType::*)(Params...) const; }; @@ -507,7 +507,7 @@ public: m_raw_function(nullptr), m_std_func(funcptr) { - + } // copy operator @@ -588,7 +588,7 @@ protected: late_bind_func m_latebinder; // late binding helper generic_static_func m_raw_function; // raw static function pointer delegate_mfp m_raw_mfp; // raw member function pointer - functional_type m_std_func; // std::function pointer + functional_type m_std_func; // std::function pointer }; |