From bd9c21a84b62553000fb1e6d23fac4c58febf348 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 25 Jul 2018 16:14:17 +0200 Subject: Remove unnecessary initialization (which also helps GCC 4.9 and VC 14u3) --- build2/cc/parser.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build2/cc/parser.cxx b/build2/cc/parser.cxx index e541d78..273a220 100644 --- a/build2/cc/parser.cxx +++ b/build2/cc/parser.cxx @@ -21,7 +21,7 @@ namespace build2 lexer l (is, name); l_ = &l; - translation_unit u {{"", false, {}}}; + translation_unit u; u_ = &u; // If the source has errors then we want the compiler to issues the -- cgit v1.1