diff options
author | Neil <nyamatongwe@gmail.com> | 2021-08-22 22:14:34 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-08-22 22:14:34 +1000 |
commit | afbd611bed7f27d0790fc19b18318e3ef213dfd8 (patch) | |
tree | 25f2007712e60e5062de4b007bf78c90f239d88c /src/CaseConvert.cxx | |
parent | 6f709917a1134aaf55fc83d8a9f18a30b50efd89 (diff) | |
download | scintilla-mirror-afbd611bed7f27d0790fc19b18318e3ef213dfd8.tar.gz |
Follow rule-of-zero / rule-of-5 where reasonable by removing standard operators
that are not needed.
Diffstat (limited to 'src/CaseConvert.cxx')
-rw-r--r-- | src/CaseConvert.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/CaseConvert.cxx b/src/CaseConvert.cxx index fd1bee2c9..59062d57d 100644 --- a/src/CaseConvert.cxx +++ b/src/CaseConvert.cxx @@ -609,7 +609,6 @@ class CaseConverter : public ICaseConverter { public: CaseConverter() noexcept { } - virtual ~CaseConverter() = default; bool Initialised() const noexcept { return !characters.empty(); } |