diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-08-28 16:15:25 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-08-28 16:15:25 +0200 |
commit | d18cadf6fcf009b79169c025c8b7a65608e2ee8a (patch) | |
tree | 63742bd9535548320e8609e9bb073316dc0b0797 | |
parent | 9d15cd5ee33d30fbe4a21b062bc79e808d61dc05 (diff) |
Fix incorrect assert
-rw-r--r-- | build2/target.txx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build2/target.txx b/build2/target.txx index dc627a6..bdd1224 100644 --- a/build2/target.txx +++ b/build2/target.txx @@ -20,7 +20,7 @@ namespace build2 do { g_ = resolve_group_members (r_->a_, search (*i_)); - assert (g_.members == nullptr); // Group could not be resolved. + assert (g_.members != nullptr); // Group could not be resolved. if (g_.count != 0) // Skip empty see through groups. { |