summaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2019-05-21 14:04:24 +0200
committerTor Egge <Tor.Egge@broadpark.no>2019-05-21 14:04:24 +0200
commita5dd544d69bd299eebcc3467a9672ef1ec337033 (patch)
tree8f8e3fc6a48754333daf34d58f92af10f1c9e658 /vespalib
parentfb212d0abb8ed773106cbdadd68e9800b257e44a (diff)
Use std::regex instead of std::basic_regex<char>.
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/vespa/vespalib/testkit/test_hook.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespalib/src/vespa/vespalib/testkit/test_hook.cpp b/vespalib/src/vespa/vespalib/testkit/test_hook.cpp
index 0b627f8d0bf..b6020dcb879 100644
--- a/vespalib/src/vespa/vespalib/testkit/test_hook.cpp
+++ b/vespalib/src/vespa/vespalib/testkit/test_hook.cpp
@@ -98,7 +98,7 @@ TestHook::runAll()
FastOSTestThreadFactory threadFactory;
TestThreadFactory::factory = &threadFactory;
std::string name = TestMaster::master.getName();
- std::basic_regex<char> pattern(lookup_subset_pattern(name), std::regex::extended);
+ std::regex pattern(lookup_subset_pattern(name), std::regex::extended);
size_t testsPassed = 0;
size_t testsFailed = 0;
size_t testsIgnored = 0;