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

Unified Diff: third_party/re2/patches/fix-implicit-conversion.patch

Issue 10575037: Include RE2 library (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Less intrusive fix for Android Created 8 years, 5 months 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/mswin/stdint.h ('k') | third_party/re2/patches/re2-android.patch » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/re2/patches/fix-implicit-conversion.patch
diff --git a/third_party/re2/patches/fix-implicit-conversion.patch b/third_party/re2/patches/fix-implicit-conversion.patch
new file mode 100644
index 0000000000000000000000000000000000000000..ab6c2f019f984ca0699c23667d161ae618522155
--- /dev/null
+++ b/third_party/re2/patches/fix-implicit-conversion.patch
@@ -0,0 +1,12 @@
+diff -r e12d4aa8907f re2/dfa.cc
+--- a/re2/dfa.cc Wed Jul 25 15:13:19 2012 +0200
++++ b/re2/dfa.cc Wed Jul 25 15:13:47 2012 +0200
+@@ -1736,7 +1736,7 @@
+ return false;
+ }
+ if (params.start == DeadState)
+- return NULL;
++ return false;
+ if (params.start == FullMatchState) {
+ if (run_forward == want_earliest_match)
+ *epp = text.begin();
« no previous file with comments | « third_party/re2/mswin/stdint.h ('k') | third_party/re2/patches/re2-android.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698