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
This commit is contained in:
Paolo Carlini 2006-12-02 00:31:34 +00:00 committed by Paolo Carlini
parent 2b4d7fe163
commit aba7b40d67
2 changed files with 6 additions and 1 deletions

View 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.

View 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; }