aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2019-03-17 14:19:57 +0100
committerTor Egge <Tor.Egge@broadpark.no>2019-03-17 14:19:57 +0100
commit11a5b5f61ae0b1fef7085fc03662f1a0eaa44455 (patch)
tree3589810c8eabadbebbc046e0e7bff5488bbcb50b /vespalib
parentc27b4c34fc7b225e5b99629861fce5f5929af824 (diff)
Specify template argument for std::basic_regex.
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 2babd22842b..0b627f8d0bf 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 pattern(lookup_subset_pattern(name), std::regex::extended);
+ std::basic_regex<char> pattern(lookup_subset_pattern(name), std::regex::extended);
size_t testsPassed = 0;
size_t testsFailed = 0;
size_t testsIgnored = 0;