diff options
| author | Neil <nyamatongwe@gmail.com> | 2018-04-21 08:43:03 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2018-04-21 08:43:03 +1000 |
| commit | 8634c0958c532e7d219e649353e1f1a74d52da1b (patch) | |
| tree | 91352944c8b5c727a385426431d2e62f3301f6ad /src/DBCS.h | |
| parent | f00008fa5a49722171c5b288f988a64443122115 (diff) | |
| download | scintilla-mirror-8634c0958c532e7d219e649353e1f1a74d52da1b.tar.gz | |
Tighten definition of regular expression iterators so they are noexcept and
define all the standard member functions. This cascades to all methods called
by the iterators, affecting Document, CellBuffer, Partitioning, SplitVector and
UTF-8 and DBCS functions.
Other trivial functions declared noexcept.
Diffstat (limited to 'src/DBCS.h')
| -rw-r--r-- | src/DBCS.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DBCS.h b/src/DBCS.h index 531437f45..ff3f9f22f 100644 --- a/src/DBCS.h +++ b/src/DBCS.h @@ -10,7 +10,7 @@ namespace Scintilla { -bool DBCSIsLeadByte(int codePage, char ch); +bool DBCSIsLeadByte(int codePage, char ch) noexcept; } |
