Lexer: Captures minimumMatchLength for abbreviated attribute matching

This commit is contained in:
Paul Beckingham
2015-07-26 22:58:02 -04:00
parent 8406dd4c6f
commit f5792a03fb
3 changed files with 5 additions and 1 deletions

View File

@@ -34,10 +34,12 @@
static const std::string uuid_pattern = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
static const unsigned int uuid_min_length = 8;
std::map <std::string, std::string> Lexer::attributes;
std::string Lexer::dateFormat = "";
bool Lexer::isoEnabled = true;
int Lexer::minimumMatchLength = 3;
std::map <std::string, std::string> Lexer::attributes;
////////////////////////////////////////////////////////////////////////////////
Lexer::Lexer (const std::string& text)