summaryrefslogtreecommitdiff
path: root/regexp_cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'regexp_cache.h')
-rw-r--r--regexp_cache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/regexp_cache.h b/regexp_cache.h
index c2c471a..75fcace 100644
--- a/regexp_cache.h
+++ b/regexp_cache.h
@@ -34,7 +34,7 @@
#include "phonenumbers/base/memory/scoped_ptr.h"
#include "phonenumbers/base/synchronization/lock.h"
-#ifdef USE_TR1_UNORDERED_MAP
+#ifdef I18N_PHONENUMBERS_USE_TR1_UNORDERED_MAP
# include <tr1/unordered_map>
#else
# include <map>
@@ -50,7 +50,7 @@ class RegExp;
class RegExpCache {
private:
-#ifdef USE_TR1_UNORDERED_MAP
+#ifdef I18N_PHONENUMBERS_USE_TR1_UNORDERED_MAP
typedef std::tr1::unordered_map<string, const RegExp*> CacheImpl;
#else
typedef std::map<string, const RegExp*> CacheImpl;