From ad17ad82dd82f3f28859ea8956564db2decea4ae Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 4 Jul 2015 10:34:16 -0400 Subject: [PATCH] Lexer: Removed obsolete method def --- src/Lexer.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Lexer.h b/src/Lexer.h index 8557fc52d..34f706b43 100644 --- a/src/Lexer.h +++ b/src/Lexer.h @@ -82,7 +82,7 @@ public: int hexToInt (int, int) const; int hexToInt (int, int, int, int) const; - // Classifiers. + // Stream Classifiers. bool isString (std::string&, Lexer::Type&, int quote); bool isDate (std::string&, Lexer::Type&); bool isDuration (std::string&, Lexer::Type&); @@ -90,7 +90,6 @@ public: bool isNumber (std::string&, Lexer::Type&); bool isHexNumber (std::string&, Lexer::Type&); bool isSeparator (std::string&, Lexer::Type&); - bool isList (std::string&, Lexer::Type&); bool isURL (std::string&, Lexer::Type&); bool isPair (std::string&, Lexer::Type&); bool isSet (std::string&, Lexer::Type&);