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

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

Issue 1516543002: Update re2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated update instructions 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 94eb183cbcf33bd2456f8b605009d70b7b25f33c..abea55d588db0cfd471d810f0a233902ad65f273 100644
--- a/third_party/re2/re2/prefilter_tree.h
+++ b/third_party/re2/re2/prefilter_tree.h
@@ -16,15 +16,13 @@
#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 std::map<int, int> StdIntMap;
+typedef map<int, int> StdIntMap;
class Prefilter;
@@ -125,7 +123,7 @@ class PrefilterTree {
// Has the prefilter tree been compiled.
bool compiled_;
- DISALLOW_EVIL_CONSTRUCTORS(PrefilterTree);
+ DISALLOW_COPY_AND_ASSIGN(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