From f0e20ad258ecfc37ff031e18b12e60206295aba9 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Tue, 17 Jan 2023 14:17:42 +0100 Subject: [PATCH] WIP: cleanup --- src/db/db/dbAsIfFlatRegion.cc | 4 ++-- src/db/db/dbDeepRegion.cc | 2 +- src/db/db/dbEmptyRegion.cc | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/db/db/dbAsIfFlatRegion.cc b/src/db/db/dbAsIfFlatRegion.cc index ea4fac536..426212a24 100644 --- a/src/db/db/dbAsIfFlatRegion.cc +++ b/src/db/db/dbAsIfFlatRegion.cc @@ -1672,7 +1672,7 @@ AsIfFlatRegion::xor_with (const Region &other, PropertyConstraint prop_constrain } else { - // @@@ TODO: implement property constraint + // TODO: implement property constraint // Generic case db::EdgeProcessor ep (report_progress (), progress_desc ()); @@ -1728,7 +1728,7 @@ AsIfFlatRegion::or_with (const Region &other, PropertyConstraint prop_constraint } else { - // @@@ TODO: implement property constraint + // TODO: implement property constraint // Generic case db::EdgeProcessor ep (report_progress (), progress_desc ()); diff --git a/src/db/db/dbDeepRegion.cc b/src/db/db/dbDeepRegion.cc index 0cec4e28d..8b060070e 100644 --- a/src/db/db/dbDeepRegion.cc +++ b/src/db/db/dbDeepRegion.cc @@ -784,7 +784,7 @@ DeepRegion::not_with (const Region &other, PropertyConstraint property_constrain RegionDelegate * DeepRegion::or_with (const Region &other, db::PropertyConstraint /*property_constraint*/) const { - // @@@ TODO: implement property_constraint + // TODO: implement property_constraint RegionDelegate *res = add (other); return res->merged_in_place (); } diff --git a/src/db/db/dbEmptyRegion.cc b/src/db/db/dbEmptyRegion.cc index 197493f56..17cce06d6 100644 --- a/src/db/db/dbEmptyRegion.cc +++ b/src/db/db/dbEmptyRegion.cc @@ -80,7 +80,7 @@ EmptyRegion::or_with (const Region &other, db::PropertyConstraint /*prop_constra } else if (! other.strict_handling ()) { return other.delegate ()->clone (); } else { - // @@@ TODO: implement prop_constraint + // TODO: implement prop_constraint return other.delegate ()->merged (); } }