diff options
| author | Neil <nyamatongwe@gmail.com> | 2020-03-24 23:04:11 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2020-03-24 23:04:11 +1100 |
| commit | 98bb3dc9449a52d530879018c42f4e5965b2c25c (patch) | |
| tree | 4aa37d79e8aa40051d1c6c221936f0354e06f059 /src/CaseFolder.h | |
| parent | e0a93ade98c1e193cde2592263b538ce1fd89bcb (diff) | |
| download | scintilla-mirror-98bb3dc9449a52d530879018c42f4e5965b2c25c.tar.gz | |
Backport: Use noexcept where possible.
Backport of changeset 8023:7e614e47074d.
Diffstat (limited to 'src/CaseFolder.h')
| -rw-r--r-- | src/CaseFolder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CaseFolder.h b/src/CaseFolder.h index eb852a491..966069bc4 100644 --- a/src/CaseFolder.h +++ b/src/CaseFolder.h @@ -20,10 +20,10 @@ class CaseFolderTable : public CaseFolder { protected: char mapping[256]; public: - CaseFolderTable(); + CaseFolderTable() noexcept; ~CaseFolderTable() override; size_t Fold(char *folded, size_t sizeFolded, const char *mixed, size_t lenMixed) override; - void SetTranslation(char ch, char chTranslation); + void SetTranslation(char ch, char chTranslation) noexcept; void StandardASCII() noexcept; }; |
