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/LexGui4Cli.cxx | |
parent | 63b724f02ea99804c2bfd67dcc8bc56003091d1a (diff) | |
download | scintilla-mirror-f267ffa752c0468a7695f4c7e187f79fcc9948e9.tar.gz |
Remove local functions that are not used.
Diffstat (limited to 'lexers/LexGui4Cli.cxx')
-rw-r--r-- | lexers/LexGui4Cli.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lexers/LexGui4Cli.cxx b/lexers/LexGui4Cli.cxx index 66dcc5ae4..0b33d2d7c 100644 --- a/lexers/LexGui4Cli.cxx +++ b/lexers/LexGui4Cli.cxx @@ -49,10 +49,6 @@ static inline bool IsAWordChar(const int ch) { return (ch < 0x80) && (isalnum(ch) || ch == '.' || ch == '_' || ch =='\\'); } -static inline bool IsAWordStart(const int ch) { - return (ch < 0x80) && (isalnum(ch) || ch == '_' || ch == '.'); -} - inline bool isGCOperator(int ch) { if (isalnum(ch)) return false; |