- Added special look-ahead rules to remove cases where '3M' was considered
  a number.
This commit is contained in:
Paul Beckingham 2011-08-13 14:10:24 -04:00
parent e238b94d1b
commit 7aa7fe083f
2 changed files with 82 additions and 6 deletions

View file

@ -130,6 +130,8 @@ public:
static bool is_id (Nibbler&, std::string&);
static bool is_uuid (Nibbler&, std::string&);
static bool is_tag (Nibbler&, std::string&);
static bool is_number (Nibbler&, double&);
static bool is_integer (Nibbler&, int&);
static bool extract_pattern (const std::string&, std::string&);
static bool extract_tag (const std::string&, char&, std::string&);