commit | 0029946577cc5b848a3aea3751bfa42e76fb84c6 | [log] [tgz] |
---|---|---|
author | Paul Wankadia <[email protected]> | Tue Aug 02 20:26:18 2016 +1000 |
committer | Paul Wankadia <[email protected]> | Tue Aug 02 10:37:21 2016 +0000 |
tree | 4e84236350d9922dff19598265d325f65333b790 | |
parent | a7a1743aaafc3f2ed0a90e7830b1680bf2f0acc8 [diff] [blame] |
Start removing #include directives from util/util.h. Of course, this entails adding them to individual source files. Change-Id: Iafa89975cfa736ac4c63559ec5e8ec88d4d97eb4 Reviewed-on: https://code-review.googlesource.com/5441 Reviewed-by: Paul Wankadia <[email protected]>
diff --git a/re2/tostring.cc b/re2/tostring.cc index 0230c8c..b967198 100644 --- a/re2/tostring.cc +++ b/re2/tostring.cc
@@ -5,6 +5,9 @@ // Format a regular expression structure as a string. // Tested by parse_test.cc +#include <string.h> +#include <string> + #include "util/util.h" #include "re2/regexp.h" #include "re2/walker-inl.h"