summaryrefslogtreecommitdiff
path: root/sigc++
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2016-04-21 19:26:34 +0200
committerMurray Cumming <murrayc@murrayc.com>2016-04-21 19:26:34 +0200
commit3059ee710b0c02beea4f8262b718c24af9b0a816 (patch)
treef9b135b449231776c3be0f75186fa7df05ba40c3 /sigc++
parent7502a6aa6df96a54b034b5722138f35e5aba1116 (diff)
downloadsigc++-3059ee710b0c02beea4f8262b718c24af9b0a816.tar.gz
signal_emit: Make a_ private.
Diffstat (limited to 'sigc++')
-rw-r--r--sigc++/signal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sigc++/signal.h b/sigc++/signal.h
index 2958adf..c641f03 100644
--- a/sigc++/signal.h
+++ b/sigc++/signal.h
@@ -272,9 +272,9 @@ struct signal_emit
slot_iterator_buf_type(slots.begin(), &self), slot_iterator_buf_type(slots.end(), &self));
}
+private:
std::tuple<type_trait_take_t<T_arg>...> a_;
-private:
// TODO_variadic: Replace this with std::experimental::apply() if that becomes standard
// C++, or add our own implementation, to avoid code duplication.
template <std::size_t... Is>