diff options
author | Zufu Liu <unknown> | 2024-12-15 09:14:12 +1100 |
---|---|---|
committer | Zufu Liu <unknown> | 2024-12-15 09:14:12 +1100 |
commit | 815e3f5a79e3ad01ef3712ea01d2c49e6ee352a1 (patch) | |
tree | 32b7a86cac4a80abfcaffbe2e2857014cffca349 /src/AutoComplete.h | |
parent | 8ee5394c1099a410f81e7218cee4a1c6ffaecbdd (diff) | |
download | scintilla-mirror-815e3f5a79e3ad01ef3712ea01d2c49e6ee352a1.tar.gz |
Feature [feature-requests:#1537]. Use noexcept where possible.
Diffstat (limited to 'src/AutoComplete.h')
-rw-r--r-- | src/AutoComplete.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/AutoComplete.h b/src/AutoComplete.h index ce8edd1d6..378232a84 100644 --- a/src/AutoComplete.h +++ b/src/AutoComplete.h @@ -66,11 +66,11 @@ public: bool IsFillUpChar(char ch) const noexcept; /// The separator character is used when interpreting the list in SetList - void SetSeparator(char separator_); + void SetSeparator(char separator_) noexcept; char GetSeparator() const noexcept; /// The typesep character is used for separating the word from the type - void SetTypesep(char separator_); + void SetTypesep(char separator_) noexcept; char GetTypesep() const noexcept; /// The list string contains a sequence of words separated by the separator character |