summaryrefslogtreecommitdiff
path: root/libstdc++-v3/include
diff options
context:
space:
mode:
authorredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2013-04-28 11:51:59 +0000
committerredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2013-04-28 11:51:59 +0000
commitefe25f3e347c31deb867efc4fd09691c6dfb8209 (patch)
treef4ed7ad6e9805c528d695793d824f6e604ab2856 /libstdc++-v3/include
parent0336e76c3ddbef5044a8312415e252b6816da68c (diff)
downloadgcc-efe25f3e347c31deb867efc4fd09691c6dfb8209.tar.gz
* include/bits/hashtable_policy.h (_Hashtable_ebo_helper): Fix
comment. * include/std/mutex (__recursive_mutex_base): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@198368 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include')
-rw-r--r--libstdc++-v3/include/bits/hashtable_policy.h4
-rw-r--r--libstdc++-v3/include/std/mutex2
2 files changed, 3 insertions, 3 deletions
diff --git a/libstdc++-v3/include/bits/hashtable_policy.h b/libstdc++-v3/include/bits/hashtable_policy.h
index 1cf6cb2ec53..1c76af0ac66 100644
--- a/libstdc++-v3/include/bits/hashtable_policy.h
+++ b/libstdc++-v3/include/bits/hashtable_policy.h
@@ -844,8 +844,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
/**
* Primary class template _Hashtable_ebo_helper.
*
- * Helper class using EBO when it is not forbidden, type is not
- * final, and when it worth it, type is empty.
+ * Helper class using EBO when it is not forbidden (the type is not
+ * final) and when it is worth it (the type is empty.)
*/
template<int _Nm, typename _Tp,
bool __use_ebo = !__is_final(_Tp) && __is_empty(_Tp)>
diff --git a/libstdc++-v3/include/std/mutex b/libstdc++-v3/include/std/mutex
index 67f34185deb..3c666c19e50 100644
--- a/libstdc++-v3/include/std/mutex
+++ b/libstdc++-v3/include/std/mutex
@@ -78,7 +78,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
__mutex_base& operator=(const __mutex_base&) = delete;
};
- // Common base class for std::recursive_mutex and std::timed_recursive_mutex
+ // Common base class for std::recursive_mutex and std::recursive_timed_mutex
class __recursive_mutex_base
{
protected: