aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2023-12-14 10:11:05 +1100
committerNeil <nyamatongwe@gmail.com>2023-12-14 10:11:05 +1100
commit108dbd549a2a7e17b744d13b451c0a18503b4480 (patch)
treef930cea9313de045ca93a08f6726f681c2899003
parent3dd48b8dcadabe394be028a5e210dec9ff617511 (diff)
downloadscintilla-mirror-108dbd549a2a7e17b744d13b451c0a18503b4480.tar.gz
Remove noexcept from MatchFlags since IsWordEndAt is not noexcept.
-rw-r--r--src/Document.cxx2
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