mt_allocator.h (__pool_base::_M_get_align): Remove redundant const qualifier on the...
authorPaolo Carlini <pcarlini@suse.de>
Sat, 2 Dec 2006 00:31:34 +0000 (00:31 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Sat, 2 Dec 2006 00:31:34 +0000 (00:31 +0000)
2006-12-01  Paolo Carlini  <pcarlini@suse.de>

* include/ext/mt_allocator.h (__pool_base::_M_get_align): Remove
redundant const qualifier on the return type.

From-SVN: r119435

libstdc++-v3/ChangeLog
libstdc++-v3/include/ext/mt_allocator.h

index 431845b..32685cb 100644 (file)
@@ -1,3 +1,8 @@
+2006-12-01  Paolo Carlini  <pcarlini@suse.de>
+
+       * include/ext/mt_allocator.h (__pool_base::_M_get_align): Remove
+       redundant const qualifier on the return type.
+
 2006-11-29  Benjamin Kosnik  <bkoz@redhat.com>
 
        * include/ext/throw_allocator.h: Consistent @file markup.
index bc2d61f..6083cdb 100644 (file)
@@ -151,7 +151,7 @@ _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx)
     _M_get_binmap(size_t __bytes)
     { return _M_binmap[__bytes]; }
 
-    const size_t
+    size_t
     _M_get_align()
     { return _M_options._M_align; }