aboutsummaryrefslogtreecommitdiff
path: root/CONTRIBUTORS
AgeCommit message (Collapse)Author
2014-01-09re2: add dot_nl to the RE2::Options classMike Nazarewicz
This allows clients to set the “s” flag by default for a given regular expression without the need to mess with the pattern by prefixing it with “(?s)”. This matters if the pattern comes from the user. Fixes issue 70. R=rsc CC=re2-dev https://codereview.appspot.com/44070048
2014-01-09re2: make tables constViatcheslav Ostapenko
Helps for moving tables to .rodata segment. Useful on chrome for Android. http://code.google.com/p/chromium/issues/detail?id=249746 Also might help compiler optimisations. R=rsc CC=re2-dev https://codereview.appspot.com/50220044
2013-10-23re2: do not include stdlib.h inside a namespacePawel Hajdan
This fixes a compile breakage. R=rsc CC=re2-dev https://codereview.appspot.com/14522047
2013-07-11re2: refactor atomic operations interfaceDmitriy Vyukov
+ use compiler builtin atomics for newer compilers The purpose of this change is to make atomic operations interceptable by race detectors. Tested with gcc 4.6.3, gcc 4.9.0 (20130603) and clang 3.4 (184078), in both release and debug builds. R=rsc CC=kcc, re2-dev https://codereview.appspot.com/9586043
2012-11-26re2: Wrap unguarded uses of LOG(ERROR), testing options.log_errors().John Millikin
Most uses were already guarded, but a few were not, and were generating unwanted stderr output. R=rsc CC=re2-dev http://codereview.appspot.com/6843067
2012-08-09util/util.h: Replace an include of <iostream> with <ostream>.Dominic Battré
util.h included <iostream> which registers an atexit destructor which slows down the shutdown process. This is not necessary, because only ostreams are used in the code. R=rsc, battre, rsc CC=re2-dev http://codereview.appspot.com/6441106
2010-04-16Add Makefile rules building a shared library.Stefano Rivera
This patch was necessary for packaging RE2 for Debian. Fixes issue 16. R=rsc CC=re2-dev http://codereview.appspot.com/674041
2010-03-19update email address for rscRuss Cox
R=r CC=re2-dev http://codereview.appspot.com/667041
2010-03-02initial releaseRuss Cox