Skip to content
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.

Commit

Permalink
Upgrade our re2 dependency to release 2019-07-01 (#1915)
Browse files Browse the repository at this point in the history
re2 commit: 848dfb7e1d7ba641d598cb66f81590f3999a555a
Backporting this to the bazel branch will help adding
re2 as a native dependency, because the version we currently
depend on no longer builds with recent bazel versions.

Signed-off-by: Otto van der Schaaf <oschaaf@we-amp.com>
  • Loading branch information
oschaaf committed Jul 11, 2019
1 parent 1b94015 commit 8a3ac4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/re2/src
Submodule src updated 87 files
+179 −0 .travis.yml
+87 −21 BUILD
+77 −56 CMakeLists.txt
+9 −13 Makefile
+7 −7 README
+17 −0 doc/syntax.txt
+26 −0 kokoro/bazel.sh
+25 −0 kokoro/cmake.sh
+1 −0 kokoro/macos-bazel.cfg
+4 −0 kokoro/macos-bazel.sh
+1 −0 kokoro/macos-cmake.cfg
+4 −0 kokoro/macos-cmake.sh
+2 −24 kokoro/ubuntu-bazel.sh
+2 −0 kokoro/windows-bazel.bat
+1 −0 kokoro/windows-bazel.cfg
+2 −11 kokoro/windows-cmake.bat
+2 −2 libre2.symbols
+2 −7 libre2.symbols.darwin
+5 −0 re2/bitmap256.h
+129 −152 re2/bitstate.cc
+78 −84 re2/compile.cc
+234 −165 re2/dfa.cc
+1 −1 re2/filtered_re2.cc
+4 −5 re2/filtered_re2.h
+95 −18 re2/fuzzing/re2_fuzzer.cc
+85 −118 re2/nfa.cc
+9 −13 re2/onepass.cc
+223 −129 re2/parse.cc
+31 −32 re2/prefilter.cc
+5 −5 re2/prefilter.h
+50 −44 re2/prefilter_tree.cc
+11 −15 re2/prefilter_tree.h
+129 −32 re2/prog.cc
+75 −42 re2/prog.h
+155 −142 re2/re2.cc
+154 −128 re2/re2.h
+22 −19 re2/regexp.cc
+70 −64 re2/regexp.h
+62 −32 re2/set.cc
+35 −15 re2/set.h
+6 −9 re2/simplify.cc
+20 −0 re2/stringpiece.h
+117 −79 re2/testing/compile_test.cc
+104 −40 re2/testing/dfa_test.cc
+4 −4 re2/testing/dump.cc
+3 −3 re2/testing/exhaustive1_test.cc
+3 −3 re2/testing/exhaustive2_test.cc
+11 −11 re2/testing/exhaustive3_test.cc
+10 −10 re2/testing/exhaustive_tester.cc
+22 −17 re2/testing/exhaustive_tester.h
+9 −9 re2/testing/filtered_re2_test.cc
+2 −2 re2/testing/mimics_pcre_test.cc
+45 −23 re2/testing/parse_test.cc
+17 −17 re2/testing/possible_match_test.cc
+7 −7 re2/testing/random_test.cc
+487 −489 re2/testing/re2_test.cc
+68 −29 re2/testing/regexp_benchmark.cc
+27 −27 re2/testing/regexp_generator.cc
+18 −16 re2/testing/regexp_generator.h
+8 −8 re2/testing/regexp_test.cc
+11 −9 re2/testing/required_prefix_test.cc
+4 −4 re2/testing/search_test.cc
+125 −97 re2/testing/set_test.cc
+4 −4 re2/testing/simplify_test.cc
+2 −2 re2/testing/string_generator.cc
+4 −4 re2/testing/string_generator.h
+3 −3 re2/testing/string_generator_test.cc
+15 −19 re2/testing/tester.cc
+11 −12 re2/tostring.cc
+2 −2 re2/unicode.py
+58 −9 re2/unicode_casefold.cc
+582 −184 re2/unicode_groups.cc
+1 −1 re2_test.bzl
+18 −6 runtests
+2 −1 util/benchmark.cc
+2 −2 util/flags.h
+2 −2 util/logging.h
+34 −22 util/pcre.cc
+32 −31 util/pcre.h
+55 −0 util/pod_array.h
+119 −241 util/sparse_array.h
+62 −54 util/sparse_set.h
+14 −22 util/strutil.cc
+5 −5 util/strutil.h
+0 −3 util/test.cc
+16 −4 util/test.h
+17 −5 util/util.h

0 comments on commit 8a3ac4b

Please sign in to comment.