From f04cc0c9e6e185e51634f40b30ac79a16def8b15 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 9 Sep 2016 21:37:37 -0400 Subject: [PATCH] Build: Eliminated compiler warning --- src/ISO8601.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/ISO8601.cpp b/src/ISO8601.cpp index 8a94621b5..0830c21fd 100644 --- a/src/ISO8601.cpp +++ b/src/ISO8601.cpp @@ -707,9 +707,12 @@ bool ISO8601d::parse_date_time_ext (Nibbler& n) parse_time_ext (n)) { if (n.skip ('Z')) + { _utc = true; + } else if (parse_off_ext (n)) - ; + { + } if (! Lexer::isDigit (n.next ())) return true;