From c89ce9202c9f3fd4dced85255d622b57cd3465d3 Mon Sep 17 00:00:00 2001 From: Neil Date: Mon, 4 Nov 2013 09:06:18 +1100 Subject: Remove local functions that are not used. --- lexers/LexMySQL.cxx | 7 ------- 1 file changed, 7 deletions(-) (limited to 'lexers/LexMySQL.cxx') 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. -- cgit v1.2.3