From e7d6c94a146e7e462dc347e885c80acbff7f42d1 Mon Sep 17 00:00:00 2001 From: Bartek Kryza Date: Fri, 13 Oct 2023 18:46:02 +0200 Subject: [PATCH] Removed redundant requirement for std::regex::multiline (Fixes #191) --- tests/catch.h | 3 --- 1 file changed, 3 deletions(-) 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;