diff options
| author | Murray Cumming <murrayc@murrayc.com> | 2016-04-13 21:15:07 +0200 |
|---|---|---|
| committer | Murray Cumming <murrayc@murrayc.com> | 2016-04-13 21:45:20 +0200 |
| commit | 53bbbe7c8c72224ae3c6b647706857218936d833 (patch) | |
| tree | a0ac7f6bd86b38f925d4e1d1c4b9060f823984fb /sigc++/adaptors/compose.h | |
| parent | e3c79b706dd181c2f8f0e3c812759d7d8d3e183a (diff) | |
| download | sigc++-53bbbe7c8c72224ae3c6b647706857218936d833.tar.gz | |
Remove all remaining result_type aliases.
They are not actually needed by anything.
Diffstat (limited to 'sigc++/adaptors/compose.h')
| -rw-r--r-- | sigc++/adaptors/compose.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sigc++/adaptors/compose.h b/sigc++/adaptors/compose.h index 2e5af90..bd4ef93 100644 --- a/sigc++/adaptors/compose.h +++ b/sigc++/adaptors/compose.h @@ -45,7 +45,6 @@ struct compose1_functor : public adapts<T_setter> { using setter_type = T_setter; using getter_type = T_getter; - using result_type = typename functor_trait<T_setter>::result_type; decltype(auto) operator()() { return this->functor_(get_()); } @@ -88,7 +87,6 @@ public: using setter_type = T_setter; using getter1_type = T_getter1; using getter2_type = T_getter2; - using result_type = typename adaptor_type::result_type; decltype(auto) operator()() { return this->functor_(get1_(), get2_()); } |
