aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrançois Dumont <fdumont@gcc.gnu.org>2016-09-26 20:32:39 +0000
committerFrançois Dumont <fdumont@gcc.gnu.org>2016-09-26 20:32:39 +0000
commitf2fe9e0a693192aa5a131bc8704dc11353f613de (patch)
tree52173b614bc001a82642d154e79ff854ade0b307
parentfbedd170be75da7195484808b7157152b9906173 (diff)
downloadgcc-f2fe9e0a693192aa5a131bc8704dc11353f613de.zip
gcc-f2fe9e0a693192aa5a131bc8704dc11353f613de.tar.gz
gcc-f2fe9e0a693192aa5a131bc8704dc11353f613de.tar.bz2
2016-09-26 François Dumont <fdumont@gcc.gnu.org>
* include/debug/safe_base.h (_Safe_iterator_base::_M_detach_single): Make public. From-SVN: r240510
-rw-r--r--libstdc++-v3/ChangeLog5
-rw-r--r--libstdc++-v3/include/debug/safe_base.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 2cffae4..770e694 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,8 @@
+2016-09-26 François Dumont <fdumont@gcc.gnu.org>
+
+ * include/debug/safe_base.h
+ (_Safe_iterator_base::_M_detach_single): Make public.
+
2016-09-26 Jonathan Wakely <jwakely@redhat.com>
* include/bits/range_access.h (__cpp_lib_array_constexpr): Do not
diff --git a/libstdc++-v3/include/debug/safe_base.h b/libstdc++-v3/include/debug/safe_base.h
index 78c3ffd..733a8f0 100644
--- a/libstdc++-v3/include/debug/safe_base.h
+++ b/libstdc++-v3/include/debug/safe_base.h
@@ -121,11 +121,11 @@ namespace __gnu_debug
void
_M_detach();
+ public:
/** Likewise, but not thread-safe. */
void
_M_detach_single() throw ();
- public:
/** Determines if we are attached to the given sequence. */
bool
_M_attached_to(const _Safe_sequence_base* __seq) const