diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2016-11-21 16:59:27 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2016-11-21 16:59:28 +0900 |
commit | 9408cea9ad30ce73c37268ab8e86ef2cededfadf (patch) | |
tree | 6dce7f99274a2d6632a63ec5484fe3bc908b2a08 /testinstall.cc | |
parent | c04192c9e5fef3601690a75a4d3dd197c79aaf5b (diff) | |
download | re2-9408cea9ad30ce73c37268ab8e86ef2cededfadf.tar.gz re2-9408cea9ad30ce73c37268ab8e86ef2cededfadf.tar.bz2 re2-9408cea9ad30ce73c37268ab8e86ef2cededfadf.zip |
Imported Upstream version 20160901upstream/20160901
Change-Id: I4e841b115bbb656c52fffa7e8af079e27db16184
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'testinstall.cc')
-rw-r--r-- | testinstall.cc | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/testinstall.cc b/testinstall.cc index 97990c2..47db4e6 100644 --- a/testinstall.cc +++ b/testinstall.cc @@ -6,15 +6,13 @@ #include <re2/filtered_re2.h> #include <stdio.h> -using namespace re2; - int main(void) { - FilteredRE2 f; + re2::FilteredRE2 f; int id; f.Add("a.*b.*c", RE2::DefaultOptions, &id); - vector<string> v; + std::vector<std::string> v; f.Compile(&v); - vector<int> ids; + std::vector<int> ids; f.FirstMatch("abbccc", ids); if(RE2::FullMatch("axbyc", "a.*b.*c")) { |