diff options
author | Neil <nyamatongwe@gmail.com> | 2023-12-14 10:11:05 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2023-12-14 10:11:05 +1100 |
commit | 108dbd549a2a7e17b744d13b451c0a18503b4480 (patch) | |
tree | f930cea9313de045ca93a08f6726f681c2899003 /src/Document.cxx | |
parent | 3dd48b8dcadabe394be028a5e210dec9ff617511 (diff) | |
download | scintilla-mirror-108dbd549a2a7e17b744d13b451c0a18503b4480.tar.gz |
Remove noexcept from MatchFlags since IsWordEndAt is not noexcept.
Diffstat (limited to 'src/Document.cxx')
-rw-r--r-- | src/Document.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.cxx b/src/Document.cxx index 84eea1394..e6521df45 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -3082,7 +3082,7 @@ public: #endif -std::regex_constants::match_flag_type MatchFlags(const Document *doc, Sci::Position startPos, Sci::Position endPos, Sci::Position lineStartPos, Sci::Position lineEndPos) noexcept { +std::regex_constants::match_flag_type MatchFlags(const Document *doc, Sci::Position startPos, Sci::Position endPos, Sci::Position lineStartPos, Sci::Position lineEndPos) { std::regex_constants::match_flag_type flagsMatch = std::regex_constants::match_default; if (startPos != lineStartPos) { #ifdef _LIBCPP_VERSION |