Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Unified Diff: third_party/re2/re2/prefilter_tree.h

Issue 1530113002: Revert of Update re2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/re2/re2/prefilter.cc ('k') | third_party/re2/re2/prefilter_tree.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « third_party/re2/re2/prefilter.cc ('k') | third_party/re2/re2/prefilter_tree.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698