aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3
diff options
context:
space:
mode:
authorredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2016-04-28 12:32:50 +0000
committerredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2016-04-28 12:32:50 +0000
commitfe47c0ce0d6e110b0c3009876a930056eae8a9f0 (patch)
tree8ff2ef3d063dbf823176f19c3c37c8322d0da12a /libstdc++-v3
parentba2fc9bcd762a3b4592bd1db472fab12763e03ad (diff)
* include/bits/hashtable_policy.h (__detail::_Insert_base,
__detail::_Insert): Improve comments. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@235564 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r--libstdc++-v3/ChangeLog5
-rw-r--r--libstdc++-v3/include/bits/hashtable_policy.h5
2 files changed, 8 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 080fd59afa0..bbbe7a45d79 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,8 @@
+2016-04-28 Jonathan Wakely <jwakely@redhat.com>
+
+ * include/bits/hashtable_policy.h (__detail::_Insert_base,
+ __detail::_Insert): Improve comments.
+
2016-04-27 Jonathan Wakely <jwakely@redhat.com>
PR libstdc++/70767
diff --git a/libstdc++-v3/include/bits/hashtable_policy.h b/libstdc++-v3/include/bits/hashtable_policy.h
index 7a2ac92f839..2c24c195bd1 100644
--- a/libstdc++-v3/include/bits/hashtable_policy.h
+++ b/libstdc++-v3/include/bits/hashtable_policy.h
@@ -667,7 +667,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
/**
* Primary class template _Insert_base.
*
- * insert member functions appropriate to all _Hashtables.
+ * Defines @c insert member functions appropriate to all _Hashtables.
*/
template<typename _Key, typename _Value, typename _Alloc,
typename _ExtractKey, typename _Equal,
@@ -769,7 +769,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
/**
* Primary class template _Insert.
*
- * Select insert member functions appropriate to _Hashtable policy choices.
+ * Defines @c insert member functions that depend on _Hashtable policies,
+ * via partial specializations.
*/
template<typename _Key, typename _Value, typename _Alloc,
typename _ExtractKey, typename _Equal,