aboutsummaryrefslogtreecommitdiff
path: root/build2
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-08-28 16:15:25 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-08-28 16:15:25 +0200
commitd18cadf6fcf009b79169c025c8b7a65608e2ee8a (patch)
tree63742bd9535548320e8609e9bb073316dc0b0797 /build2
parent9d15cd5ee33d30fbe4a21b062bc79e808d61dc05 (diff)
Fix incorrect assert
Diffstat (limited to 'build2')
-rw-r--r--build2/target.txx2
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.
{