diff options
-rw-r--r-- | build2/target | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build2/target b/build2/target index 5328bc4..b5e7ee9 100644 --- a/build2/target +++ b/build2/target @@ -186,7 +186,7 @@ namespace build2 // the iteration support itself, see the *_prerequisite_members() // machinery below. // - target* group {nullptr}; + target* group = nullptr; // You should not call this function directly; rather use // resolve_group_members() from <build2/algorithm>. @@ -307,7 +307,7 @@ namespace build2 } public: - target_state raw_state; + target_state raw_state = target_state::unknown; target_state state () const |