diff options
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;  }; | 
