WIP: cleanup

This commit is contained in:
Matthias Koefferlein 2023-01-17 14:17:42 +01:00
parent 5ff187a56d
commit f0e20ad258
3 changed files with 4 additions and 4 deletions

View File

@ -1672,7 +1672,7 @@ AsIfFlatRegion::xor_with (const Region &other, PropertyConstraint prop_constrain
} else { } else {
// @@@ TODO: implement property constraint // TODO: implement property constraint
// Generic case // Generic case
db::EdgeProcessor ep (report_progress (), progress_desc ()); db::EdgeProcessor ep (report_progress (), progress_desc ());
@ -1728,7 +1728,7 @@ AsIfFlatRegion::or_with (const Region &other, PropertyConstraint prop_constraint
} else { } else {
// @@@ TODO: implement property constraint // TODO: implement property constraint
// Generic case // Generic case
db::EdgeProcessor ep (report_progress (), progress_desc ()); db::EdgeProcessor ep (report_progress (), progress_desc ());

View File

@ -784,7 +784,7 @@ DeepRegion::not_with (const Region &other, PropertyConstraint property_constrain
RegionDelegate * RegionDelegate *
DeepRegion::or_with (const Region &other, db::PropertyConstraint /*property_constraint*/) const DeepRegion::or_with (const Region &other, db::PropertyConstraint /*property_constraint*/) const
{ {
// @@@ TODO: implement property_constraint // TODO: implement property_constraint
RegionDelegate *res = add (other); RegionDelegate *res = add (other);
return res->merged_in_place (); return res->merged_in_place ();
} }

View File

@ -80,7 +80,7 @@ EmptyRegion::or_with (const Region &other, db::PropertyConstraint /*prop_constra
} else if (! other.strict_handling ()) { } else if (! other.strict_handling ()) {
return other.delegate ()->clone (); return other.delegate ()->clone ();
} else { } else {
// @@@ TODO: implement prop_constraint // TODO: implement prop_constraint
return other.delegate ()->merged (); return other.delegate ()->merged ();
} }
} }