Lexer: Migrated from ISO8601p to Duration

This commit is contained in:
Paul Beckingham 2017-03-04 21:43:43 -05:00
parent 769d4a2ebe
commit c0d5d5974e

View file

@ -29,7 +29,7 @@
#include <algorithm> #include <algorithm>
#include <ctype.h> #include <ctype.h>
#include <Datetime.h> #include <Datetime.h>
#include <ISO8601.h> #include <Duration.h>
#include <utf8.h> #include <utf8.h>
static const std::string uuid_pattern = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"; static const std::string uuid_pattern = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
@ -573,7 +573,7 @@ bool Lexer::isDate (std::string& token, Lexer::Type& type)
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Lexer::Type::duration // Lexer::Type::duration
// <ISO8601p> | <Duration> // <Duration>
bool Lexer::isDuration (std::string& token, Lexer::Type& type) bool Lexer::isDuration (std::string& token, Lexer::Type& type)
{ {
std::size_t marker = _cursor; std::size_t marker = _cursor;
@ -587,7 +587,7 @@ bool Lexer::isDuration (std::string& token, Lexer::Type& type)
} }
marker = 0; marker = 0;
ISO8601p iso; Duration iso;
if (iso.parse (_text.substr (_cursor), marker)) if (iso.parse (_text.substr (_cursor), marker))
{ {
type = Lexer::Type::duration; type = Lexer::Type::duration;