Index: third_party/re2/re2/prefilter_tree.h |
diff --git a/third_party/re2/re2/prefilter_tree.h b/third_party/re2/re2/prefilter_tree.h |
index abea55d588db0cfd471d810f0a233902ad65f273..94eb183cbcf33bd2456f8b605009d70b7b25f33c 100644 |
--- a/third_party/re2/re2/prefilter_tree.h |
+++ b/third_party/re2/re2/prefilter_tree.h |
@@ -16,13 +16,15 @@ |
#ifndef RE2_PREFILTER_TREE_H_ |
#define RE2_PREFILTER_TREE_H_ |
+#include <map> |
+ |
#include "util/util.h" |
#include "util/sparse_array.h" |
namespace re2 { |
typedef SparseArray<int> IntMap; |
-typedef map<int, int> StdIntMap; |
+typedef std::map<int, int> StdIntMap; |
class Prefilter; |
@@ -123,7 +125,7 @@ |
// Has the prefilter tree been compiled. |
bool compiled_; |
- DISALLOW_COPY_AND_ASSIGN(PrefilterTree); |
+ DISALLOW_EVIL_CONSTRUCTORS(PrefilterTree); |
}; |
} // namespace |