summaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/ext
diff options
context:
space:
mode:
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>2006-12-02 00:31:34 +0000
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>2006-12-02 00:31:34 +0000
commitf563d1b7e881d00d7e4d3f475b705aee95ba9102 (patch)
treefefdb837be7f9be822cb36d6d771fe1a874a15fc /libstdc++-v3/include/ext
parent4d7d8d7fd9e0ad93b83f880276c09899023bb2a6 (diff)
downloadgcc-f563d1b7e881d00d7e4d3f475b705aee95ba9102.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@119435 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/ext')
-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 bc2d61f6eec..6083cdb9c25 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; }