From 83eb1531ad3d3716aff63f62f1463080c47ad3b2 Mon Sep 17 00:00:00 2001 From: manga_osyo Date: Sat, 5 May 2012 00:23:48 +0900 Subject: [PATCH] =?UTF-8?q?=E5=A4=89=E6=95=B0=E5=90=8D=E3=82=92=E5=A4=89?= =?UTF-8?q?=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- libs/weed/example/__TIME__.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/weed/example/__TIME__.cpp b/libs/weed/example/__TIME__.cpp index e6283cb8..2074e511 100644 --- a/libs/weed/example/__TIME__.cpp +++ b/libs/weed/example/__TIME__.cpp @@ -34,7 +34,7 @@ main(){ // // parse __TIME__ // - constexpr auto parser = w::int_ >> ':' >> w::int_ >> ':' >> w::int_; + constexpr auto expr = w::int_ >> ':' >> w::int_ >> ':' >> w::int_; static constexpr auto result = w::parse(time.begin(), time.end(), parser); static_assert(result.success(), "failed parse");