From d6b350c8a09d7ba9622b94bff37900999f255c82 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 3 Sep 2016 17:08:52 +0200 Subject: Fix uninitialized variable warning --- build2/cc/common.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build2/cc/common.cxx b/build2/cc/common.cxx index 41e34da..c9b9108 100644 --- a/build2/cc/common.cxx +++ b/build2/cc/common.cxx @@ -95,7 +95,7 @@ namespace build2 } bool impl (proc_impl && proc_impl (l, la)); - bool cc, same; + bool cc (false), same (false); auto& vp (var_pool); lookup c_e_libs; -- cgit v1.1