diff options
author | Ben Elliston <bje@au.ibm.com> | 2008-08-27 00:42:39 +0000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 2008-08-27 10:42:39 +1000 |
commit | 41e404e6a5a4d036005c584babf65d23fc35e943 (patch) | |
tree | 0443f95209381aa9d50022e371d76393c4cbf813 | |
parent | e9a5754dba90ced140412a1b891536149e217388 (diff) | |
download | gcc-41e404e6a5a4d036005c584babf65d23fc35e943.zip gcc-41e404e6a5a4d036005c584babf65d23fc35e943.tar.gz gcc-41e404e6a5a4d036005c584babf65d23fc35e943.tar.bz2 |
* src/mt_allocator.cc (__pool): Fix error in comment.
From-SVN: r139617
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/src/mt_allocator.cc | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index ca92259..05a9be4 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2008-08-26 Ben Elliston <bje@au.ibm.com> + + * src/mt_allocator.cc (__pool): Fix error in comment. + 2008-08-25 Paolo Carlini <paolo.carlini@oracle.com> * linkage.m4 ([GLIBCXX_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1], diff --git a/libstdc++-v3/src/mt_allocator.cc b/libstdc++-v3/src/mt_allocator.cc index da0b09c..1e64227 100644 --- a/libstdc++-v3/src/mt_allocator.cc +++ b/libstdc++-v3/src/mt_allocator.cc @@ -610,7 +610,7 @@ _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx) // If we have thread support and it's active we check the thread // key value and return its id or if it's not set we take the // first record from _M_thread_freelist and sets the key and - // returns it's id. + // returns its id. if (__gthread_active_p()) { void* v = __gthread_getspecific(freelist._M_key); |