diff options
author | Neil <nyamatongwe@gmail.com> | 2013-11-04 09:06:18 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-11-04 09:06:18 +1100 |
commit | f267ffa752c0468a7695f4c7e187f79fcc9948e9 (patch) | |
tree | a0e0de2005970d78d9be5b22f9d114193555c72a /lexers/LexMySQL.cxx | |
parent | 63b724f02ea99804c2bfd67dcc8bc56003091d1a (diff) | |
download | scintilla-mirror-f267ffa752c0468a7695f4c7e187f79fcc9948e9.tar.gz |
Remove local functions that are not used.
Diffstat (limited to 'lexers/LexMySQL.cxx')
-rw-r--r-- | lexers/LexMySQL.cxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lexers/LexMySQL.cxx b/lexers/LexMySQL.cxx index f4823f822..d3e0033b0 100644 --- a/lexers/LexMySQL.cxx +++ b/lexers/LexMySQL.cxx @@ -40,13 +40,6 @@ static inline bool IsAWordStart(int ch) { return (ch < 0x80) && (isalpha(ch) || ch == '_'); } -static inline bool IsADoxygenChar(int ch) { - return (islower(ch) || ch == '$' || ch == '@' || - ch == '\\' || ch == '&' || ch == '<' || - ch == '>' || ch == '#' || ch == '{' || - ch == '}' || ch == '[' || ch == ']'); -} - static inline bool IsANumberChar(int ch) { // Not exactly following number definition (several dots are seen as OK, etc.) // but probably enough in most cases. |