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 /lexlib/StyleContext.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 'lexlib/StyleContext.cxx')
-rw-r--r-- | lexlib/StyleContext.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lexlib/StyleContext.cxx b/lexlib/StyleContext.cxx index 683e21453..fe56e53d7 100644 --- a/lexlib/StyleContext.cxx +++ b/lexlib/StyleContext.cxx @@ -7,7 +7,6 @@ #include <cstdlib> #include <cassert> -#include <cctype> #include "ILexer.h" |