fixup! Use string_view for a couple of Dbg methods

This commit is contained in:
Tim Wojtulewicz 2020-02-11 11:14:55 -08:00
parent da7749fc43
commit d69d0da62e
2 changed files with 3 additions and 2 deletions

View file

@ -27,7 +27,7 @@
//
// Helper routines
//
bool string_is_regex(string_view s)
bool string_is_regex(const string& s)
{
return strpbrk(s.data(), "?*\\+");
}