diff options
author | Murray Cumming <murrayc@murrayc.com> | 2016-03-02 21:24:37 +0100 |
---|---|---|
committer | Murray Cumming <murrayc@murrayc.com> | 2016-03-07 10:43:09 +0100 |
commit | 520bc824be55140746a92df6c5a21a22f0b0267f (patch) | |
tree | ebc5dcb72e40b0b09027a6d8509a810f487a89d3 /sigc++/tuple-utils/tuple_start.h | |
parent | 1db1415169e254b626563ccbe128ee91a0fab31c (diff) | |
download | sigc++-520bc824be55140746a92df6c5a21a22f0b0267f.tar.gz |
Put tuple-utils into sigc::internal namespace.
To discourage people from using libsigc++ just for the tuple utils.
Diffstat (limited to 'sigc++/tuple-utils/tuple_start.h')
-rw-r--r-- | sigc++/tuple-utils/tuple_start.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sigc++/tuple-utils/tuple_start.h b/sigc++/tuple-utils/tuple_start.h index 95fda2e..04f738d 100644 --- a/sigc++/tuple-utils/tuple_start.h +++ b/sigc++/tuple-utils/tuple_start.h @@ -22,6 +22,8 @@ namespace sigc { +namespace internal { + namespace detail { template <typename T, typename Seq> @@ -75,6 +77,8 @@ decltype(auto) // typename tuple_type_end<T, len>::type std::forward<T>(t)); } -} // namespace sigc; +} // namespace internal + +} // namespace sigc #endif //SIGC_TUPLE_UTILS_TUPLE_START_H |