aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/ext/mt_allocator.h
diff options
context:
space:
mode:
authorPaolo Carlini <pcarlini@suse.de>2006-12-02 00:31:34 +0000
committerPaolo Carlini <paolo@gcc.gnu.org>2006-12-02 00:31:34 +0000
commitaba7b40d6785483831ee5968a66bc51c4ee82ae1 (patch)
treefefdb837be7f9be822cb36d6d771fe1a874a15fc /libstdc++-v3/include/ext/mt_allocator.h
parent2b4d7fe16328460da9070db60b190e382e483910 (diff)
downloadgcc-aba7b40d6785483831ee5968a66bc51c4ee82ae1.zip
gcc-aba7b40d6785483831ee5968a66bc51c4ee82ae1.tar.gz
gcc-aba7b40d6785483831ee5968a66bc51c4ee82ae1.tar.bz2
mt_allocator.h (__pool_base::_M_get_align): Remove redundant const qualifier on the return type.
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
Diffstat (limited to 'libstdc++-v3/include/ext/mt_allocator.h')
-rw-r--r--libstdc++-v3/include/ext/mt_allocator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/include/ext/mt_allocator.h b/libstdc++-v3/include/ext/mt_allocator.h
index bc2d61f..6083cdb 100644
--- a/libstdc++-v3/include/ext/mt_allocator.h
+++ b/libstdc++-v3/include/ext/mt_allocator.h
@@ -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; }