aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2013-07-06 10:57:15 +1000
committerNeil <nyamatongwe@gmail.com>2013-07-06 10:57:15 +1000
commit7761b199c1167fda77a8d3b1458f11936b15e1c5 (patch)
tree139553fb3d0e5dc1e5f5b3c74c3563d604aff77d
parent04209591c8c874d5125dd442d72eab528c5d2e1a (diff)
downloadscintilla-mirror-7761b199c1167fda77a8d3b1458f11936b15e1c5.tar.gz
Removed static functions that have never been used.
-rw-r--r--lexers/LexAda.cxx15
1 files changed, 0 insertions, 15 deletions
diff --git a/lexers/LexAda.cxx b/lexers/LexAda.cxx
index 49eb2c68b..b11c247bb 100644
--- a/lexers/LexAda.cxx
+++ b/lexers/LexAda.cxx
@@ -65,8 +65,6 @@ static void ColouriseWhiteSpace(StyleContext& sc, bool& apostropheStartsAttribut
static void ColouriseWord(StyleContext& sc, WordList& keywords, bool& apostropheStartsAttribute);
static inline bool IsDelimiterCharacter(int ch);
-static inline bool IsNumberStartCharacter(int ch);
-static inline bool IsNumberCharacter(int ch);
static inline bool IsSeparatorOrDelimiterCharacter(int ch);
static bool IsValidIdentifier(const std::string& identifier);
static bool IsValidNumber(const std::string& number);
@@ -310,19 +308,6 @@ static inline bool IsDelimiterCharacter(int ch) {
}
}
-static inline bool IsNumberCharacter(int ch) {
- return IsNumberStartCharacter(ch) ||
- ch == '_' ||
- ch == '.' ||
- ch == '#' ||
- (ch >= 'a' && ch <= 'f') ||
- (ch >= 'A' && ch <= 'F');
-}
-
-static inline bool IsNumberStartCharacter(int ch) {
- return IsADigit(ch);
-}
-
static inline bool IsSeparatorOrDelimiterCharacter(int ch) {
return IsASpace(ch) || IsDelimiterCharacter(ch);
}