mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2024-11-12 21:09:01 +00:00
fixed bug
This commit is contained in:
parent
9f061e8882
commit
aeeba70cd1
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ main(){
|
|||
//
|
||||
// parse __TIME__
|
||||
//
|
||||
constexpr auto expr = w::int_ >> ':' >> w::int_ >> ':' >> w::int_;
|
||||
constexpr auto parser = w::int_ >> ':' >> w::int_ >> ':' >> w::int_;
|
||||
static constexpr auto result = w::parse(time.begin(), time.end(), parser);
|
||||
static_assert(result.success(), "failed parse");
|
||||
|
||||
|
|
Loading…
Reference in a new issue