diff options
-rw-r--r-- | build2/b.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build2/b.cxx b/build2/b.cxx index 36bcb2a..b88fd5e 100644 --- a/build2/b.cxx +++ b/build2/b.cxx @@ -609,14 +609,14 @@ main (int argc, char* argv[]) if (os.empty ()) // Default target: dir{}. os.push_back (targetspec (name ("dir", string ()))); - operation_id oid (0), orig_oid; + operation_id oid (0), orig_oid (0); const operation_info* oif (nullptr); const operation_info* outer_oif (nullptr); - operation_id pre_oid (0), orig_pre_oid; + operation_id pre_oid (0), orig_pre_oid (0); const operation_info* pre_oif (nullptr); - operation_id post_oid (0), orig_post_oid; + operation_id post_oid (0), orig_post_oid (0); const operation_info* post_oif (nullptr); // Return true if this operation is lifted. |