[libsigcplusplus/variadic_mem_fun3: 141/148] mem_functor_base: Remove T_obj template parameter.
- From: Murray Cumming <murrayc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libsigcplusplus/variadic_mem_fun3: 141/148] mem_functor_base: Remove T_obj template parameter.
- Date: Mon, 7 Mar 2016 10:09:40 +0000 (UTC)
commit f0a67b0e5afc5151c4d2b1478117079dbe509474
Author: Murray Cumming <murrayc murrayc com>
Date: Sat Mar 5 23:47:15 2016 +0100
mem_functor_base: Remove T_obj template parameter.
Instead using member_method_class<>::type.
sigc++/adaptors/retype.h | 6 +++---
sigc++/functors/macros/mem_fun.h.m4 | 16 +++++++++-------
2 files changed, 12 insertions(+), 10 deletions(-)
---
diff --git a/sigc++/adaptors/retype.h b/sigc++/adaptors/retype.h
index df14864..621ceef 100644
--- a/sigc++/adaptors/retype.h
+++ b/sigc++/adaptors/retype.h
@@ -137,10 +137,10 @@ retype(const pointer_functor<T_return, T_arg...>& _A_functor)
*
* @ingroup retype
*/
-template <class T_func, class T_obj, class... T_arg>
+template <class T_func, class... T_arg>
inline decltype(auto)
-retype(const mem_functor_base<T_func, T_obj, T_arg...>& _A_functor)
-{ return retype_functor<mem_functor_base<T_func, T_obj, T_arg...>, T_arg...>
+retype(const mem_functor_base<T_func, T_arg...>& _A_functor)
+{ return retype_functor<mem_functor_base<T_func, T_arg...>, T_arg...>
(_A_functor);
}
diff --git a/sigc++/functors/macros/mem_fun.h.m4 b/sigc++/functors/macros/mem_fun.h.m4
index 37f93b6..d8e1b37 100644
--- a/sigc++/functors/macros/mem_fun.h.m4
+++ b/sigc++/functors/macros/mem_fun.h.m4
@@ -33,7 +33,7 @@ template<class T_return, class T_obj, class... T_arg>
using [$1]mem_functor =
mem_functor_base<
T_return (T_obj::*)(T_arg...) $2,
- T_obj, T_arg...>;
+ T_arg...>;
])
define([BOUND_MEMBER_FUNCTOR],[dnl
@@ -67,7 +67,7 @@ inline decltype(auto)
mem_fun(T_return (T_obj::*_A_func)(T_arg...) $3)
{ return mem_functor_base<
T_return (T_obj::*)(T_arg...) $3,
- T_obj, T_arg...>(_A_func); }
+ T_arg...>(_A_func); }
])
define([BOUND_MEM_FUN],[dnl
@@ -172,15 +172,17 @@ namespace sigc {
* @ingroup sigcfunctors
*/
-template <class T_func, class T_obj, class... T_arg>
+template <class T_func, class... T_arg>
class mem_functor_base : public functor_base
{
public:
+ using object_type = typename member_method_class<T_func>::type;
+
using function_type = T_func;
- using result_type = std::result_of_t<T_func(T_obj*, T_arg...)>;
+ using result_type = std::result_of_t<T_func(object_type*, T_arg...)>;
using obj_type_with_modifier = typename std::conditional_t<
- member_method_is_const<T_func>::value, const T_obj, T_obj>;
+ member_method_is_const<T_func>::value, const object_type, object_type>;
/// Constructs an invalid functor.
mem_functor_base() : func_ptr_(nullptr) {}
@@ -221,9 +223,9 @@ MEMBER_FUNCTOR([const_],[const])
template <class T_func,
class T_obj, class... T_arg>
class bound_mem_functor_base
-: mem_functor_base<T_func, T_obj, T_arg...>
+: mem_functor_base<T_func, T_arg...>
{
- using base_type = mem_functor_base<T_func, T_obj, T_arg...>;
+ using base_type = mem_functor_base<T_func, T_arg...>;
public:
using function_type = typename base_type::function_type;
using result_type = typename base_type::result_type;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]