Lexer: Added 'endBoundary' requirement to ::isUUID

This commit is contained in:
Paul Beckingham 2015-07-25 17:59:40 -04:00
parent f910ce39de
commit 3e74aa51e2
2 changed files with 8 additions and 7 deletions

View file

@ -89,7 +89,7 @@ public:
bool isString (std::string&, Lexer::Type&, const std::string&);
bool isDate (std::string&, Lexer::Type&);
bool isDuration (std::string&, Lexer::Type&);
bool isUUID (std::string&, Lexer::Type&);
bool isUUID (std::string&, Lexer::Type&, bool);
bool isNumber (std::string&, Lexer::Type&);
bool isInteger (std::string&, Lexer::Type&);
bool isHexNumber (std::string&, Lexer::Type&);