summaryrefslogtreecommitdiff
path: root/sigc++/adaptors/retype_return.h
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2016-04-13 21:15:07 +0200
committerMurray Cumming <murrayc@murrayc.com>2016-04-13 21:45:20 +0200
commit53bbbe7c8c72224ae3c6b647706857218936d833 (patch)
treea0ac7f6bd86b38f925d4e1d1c4b9060f823984fb /sigc++/adaptors/retype_return.h
parente3c79b706dd181c2f8f0e3c812759d7d8d3e183a (diff)
downloadsigc++-53bbbe7c8c72224ae3c6b647706857218936d833.tar.gz
Remove all remaining result_type aliases.
They are not actually needed by anything.
Diffstat (limited to 'sigc++/adaptors/retype_return.h')
-rw-r--r--sigc++/adaptors/retype_return.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/sigc++/adaptors/retype_return.h b/sigc++/adaptors/retype_return.h
index 5551d92..bbe8241 100644
--- a/sigc++/adaptors/retype_return.h
+++ b/sigc++/adaptors/retype_return.h
@@ -18,8 +18,6 @@ namespace sigc
template <class T_return, class T_functor>
struct retype_return_functor : public adapts<T_functor>
{
- using result_type = T_return;
-
T_return operator()();
template <class... T_arg>
@@ -60,8 +58,6 @@ retype_return_functor<T_return, T_functor>::operator()()
template <class T_functor>
struct retype_return_functor<void, T_functor> : public adapts<T_functor>
{
- using result_type = void;
-
void operator()();
template <class... T_arg>