diff --git a/cmake/std_regex.cpp b/cmake/std_regex.cpp index 2059a9f0..696f2a26 100644 --- a/cmake/std_regex.cpp +++ b/cmake/std_regex.cpp @@ -2,9 +2,9 @@ #include int main() { const std::string str = "test0159"; - const std::regex re( - "^[a-z]+[0-9]+$", - std::regex_constants::extended | std::regex_constants::nosubs); + std::regex re; + re = std::regex("^[a-z]+[0-9]+$", + std::regex_constants::extended | std::regex_constants::nosubs); return std::regex_search(str, re) ? 0 : -1; }