Commit 343363aa authored by vjpai's avatar vjpai Committed by Feng Xiao

Address review comments on function name

parent 4e5dadb1
...@@ -587,7 +587,7 @@ class Map { ...@@ -587,7 +587,7 @@ class Map {
explicit MapAllocator(Arena* arena) : arena_(arena) {} explicit MapAllocator(Arena* arena) : arena_(arena) {}
template <typename X> template <typename X>
MapAllocator(const MapAllocator<X>& allocator) MapAllocator(const MapAllocator<X>& allocator)
: arena_(allocator.arena_internal_only()) {} : arena_(allocator.arena()) {}
pointer allocate(size_type n, const_pointer hint = 0) { pointer allocate(size_type n, const_pointer hint = 0) {
// If arena is not given, malloc needs to be called which doesn't // If arena is not given, malloc needs to be called which doesn't
...@@ -652,7 +652,7 @@ class Map { ...@@ -652,7 +652,7 @@ class Map {
// To support gcc-4.4, which does not properly // To support gcc-4.4, which does not properly
// support templated friend classes // support templated friend classes
Arena* arena_internal_only() const { Arena* arena() const {
return arena_; return arena_;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment