diff --git a/tests/catch.h b/tests/catch.h index 27888c9d..9cb6f4fe 100644 --- a/tests/catch.h +++ b/tests/catch.h @@ -13301,9 +13301,6 @@ bool RegexMatcher::match(std::string const &matchee) const { auto flags = std::regex::ECMAScript; // ECMAScript is the default syntax // option anyway -#if !defined(_WIN32) - flags |= std::regex::multiline; -#endif if (m_caseSensitivity == CaseSensitive::Choice::No) { flags |= std::regex::icase;