summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2016-03-03 22:50:42 +0100
committerMurray Cumming <murrayc@murrayc.com>2016-03-03 22:50:42 +0100
commit3bbeffd4054f54c3612349f61d0aee678ed1e180 (patch)
tree5304a8096f861c76e4b98e167f1eca9da160f337
parent06e86e782035b187ccd9509af0d82276dfc21698 (diff)
downloadsigc++-3bbeffd4054f54c3612349f61d0aee678ed1e180.tar.gz
bind_functor: Make bound_ private.
-rw-r--r--sigc++/adaptors/bind.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/sigc++/adaptors/bind.h b/sigc++/adaptors/bind.h
index 390d42b..238cb4d 100644
--- a/sigc++/adaptors/bind.h
+++ b/sigc++/adaptors/bind.h
@@ -159,11 +159,10 @@ struct bind_functor : public adapts<T_functor>
: adapts<T_functor>(_A_func), bound_(_A_bound...)
{}
- //TODO: Should this be private?
+private:
/// The arguments bound to the functor.
std::tuple<bound_argument<T_bound>...> bound_;
-private:
template<class T_specific, class T, std::size_t... Is>
decltype(auto)
call_functor_operator_parentheses(T&& tuple,