diff options
author | Paolo Carlini <paolo.carlini@oracle.com> | 2010-10-25 09:42:08 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2010-10-25 09:42:08 +0000 |
commit | 7d9d5bb6c925e42901e65a81eff677d086dddbdc (patch) | |
tree | c3390a66c9c1b474c1e8f994dc76de7be9a6067d /libstdc++-v3 | |
parent | 8150f05c20bd3a41b337f37ce3badecf36abb259 (diff) | |
download | gcc-7d9d5bb6c925e42901e65a81eff677d086dddbdc.zip gcc-7d9d5bb6c925e42901e65a81eff677d086dddbdc.tar.gz gcc-7d9d5bb6c925e42901e65a81eff677d086dddbdc.tar.bz2 |
hashtable.h (_Hashtable<>:_M_get_Value_allocator): Remove, unused.
2010-10-25 Paolo Carlini <paolo.carlini@oracle.com>
* include/bits/hashtable.h (_Hashtable<>:_M_get_Value_allocator):
Remove, unused.
From-SVN: r165912
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/hashtable.h | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 8e93db4..77d5154 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2010-10-25 Paolo Carlini <paolo.carlini@oracle.com> + + * include/bits/hashtable.h (_Hashtable<>:_M_get_Value_allocator): + Remove, unused. + 2010-10-24 François Dumont <francois.cppdevs@free.fr> * src/debug.cc: Fix parameter indexes in __msg_valid_range2 message. diff --git a/libstdc++-v3/include/bits/hashtable.h b/libstdc++-v3/include/bits/hashtable.h index be6d9a1..dd8c1c2 100644 --- a/libstdc++-v3/include/bits/hashtable.h +++ b/libstdc++-v3/include/bits/hashtable.h @@ -271,10 +271,6 @@ namespace std get_allocator() const { return allocator_type(_M_node_allocator); } - _Value_allocator_type - _M_get_Value_allocator() const - { return _Value_allocator_type(_M_node_allocator); } - size_type max_size() const { return _M_node_allocator.max_size(); } |