* stringpool.cc (Stringpool_template::reserve): Add
HAVE_UNORDERED_MAP case. * stringpool.cc (Stringpool_template::print_stats): Likewise.
This commit is contained in:
parent
7331bf4ec9
commit
6c09fb0ba1
@ -1,3 +1,9 @@
|
||||
2013-12-19 Dimitry Andric <dimitry@andric.com>
|
||||
|
||||
* stringpool.cc (Stringpool_template::reserve): Add
|
||||
HAVE_UNORDERED_MAP case.
|
||||
* stringpool.cc (Stringpool_template::print_stats): Likewise.
|
||||
|
||||
2013-12-18 Cary Coutant <ccoutant@google.com>
|
||||
|
||||
* configure.ac: Check for <unordered_set> and <unordered_map>.
|
||||
|
@ -73,7 +73,10 @@ Stringpool_template<Stringpool_char>::reserve(unsigned int n)
|
||||
{
|
||||
this->key_to_offset_.reserve(n);
|
||||
|
||||
#if defined(HAVE_TR1_UNORDERED_MAP)
|
||||
#if defined(HAVE_UNORDERED_MAP)
|
||||
this->string_set_.rehash(this->string_set_.size() + n);
|
||||
return;
|
||||
#elif defined(HAVE_TR1_UNORDERED_MAP)
|
||||
// rehash() implementation is broken in gcc 4.0.3's stl
|
||||
//this->string_set_.rehash(this->string_set_.size() + n);
|
||||
//return;
|
||||
@ -503,7 +506,7 @@ template<typename Stringpool_char>
|
||||
void
|
||||
Stringpool_template<Stringpool_char>::print_stats(const char* name) const
|
||||
{
|
||||
#if defined(HAVE_TR1_UNORDERED_MAP) || defined(HAVE_EXT_HASH_MAP)
|
||||
#if defined(HAVE_UNORDERED_MAP) || defined(HAVE_TR1_UNORDERED_MAP) || defined(HAVE_EXT_HASH_MAP)
|
||||
fprintf(stderr, _("%s: %s entries: %zu; buckets: %zu\n"),
|
||||
program_name, name, this->string_set_.size(),
|
||||
this->string_set_.bucket_count());
|
||||
|
Loading…
x
Reference in New Issue
Block a user