diff options
author | Neil <nyamatongwe@gmail.com> | 2019-01-13 16:30:28 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2019-01-13 16:30:28 +1100 |
commit | 7927d7da0bbc485a142426bd6dbb9d6db8c2c105 (patch) | |
tree | eebfa2cbc98b556001bf4cb8a0df4aeeef9bfa33 /src/Editor.cxx | |
parent | 468e18f0fab0cd0bc2e2a9944c02317e9ea828af (diff) | |
download | scintilla-mirror-7927d7da0bbc485a142426bd6dbb9d6db8c2c105.tar.gz |
Backport: Replace the only use of a function from <cctype> with a Scintilla function.
Remove inclusion of <cctype> except in lexers as cctype functions often behave
poorly and may crash for out of bounds arguments.
Backport of changeset 7228:348e55f8107c.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 045266604..563b3a665 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -9,7 +9,6 @@ #include <cstdlib> #include <cassert> #include <cstring> -#include <cctype> #include <cstdio> #include <cmath> |