diff options
author | Neil <nyamatongwe@gmail.com> | 2019-03-03 15:35:54 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2019-03-03 15:35:54 +1100 |
commit | 590b1615aaaa20916de1b5f25fc1050395f7312f (patch) | |
tree | cf3c7425ae7814cd71fe54f8f94550867375bb94 /src/CaseFolder.h | |
parent | 954d09cd99be5655bcc9bac8e80ca76994779db8 (diff) | |
download | scintilla-mirror-590b1615aaaa20916de1b5f25fc1050395f7312f.tar.gz |
Backport: Use noexcept where reasonable.
Backport of changeset 7287:0272b3c3a03b.
Diffstat (limited to 'src/CaseFolder.h')
-rw-r--r-- | src/CaseFolder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CaseFolder.h b/src/CaseFolder.h index 5fa65870e..eb852a491 100644 --- a/src/CaseFolder.h +++ b/src/CaseFolder.h @@ -24,7 +24,7 @@ public: ~CaseFolderTable() override; size_t Fold(char *folded, size_t sizeFolded, const char *mixed, size_t lenMixed) override; void SetTranslation(char ch, char chTranslation); - void StandardASCII(); + void StandardASCII() noexcept; }; class ICaseConverter; |