From 75ce475d8600f87c5a7f06a7c92dd3c8f8af89c7 Mon Sep 17 00:00:00 2001 From: Uwe Date: Sun, 19 Jun 2022 18:43:50 +0200 Subject: [PATCH] [skip CI] [Path] fix typo I just introduced --- src/Mod/Path/libarea/kurve/Finite.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Path/libarea/kurve/Finite.cpp b/src/Mod/Path/libarea/kurve/Finite.cpp index 9c00f4fc7e..bc37792f45 100644 --- a/src/Mod/Path/libarea/kurve/Finite.cpp +++ b/src/Mod/Path/libarea/kurve/Finite.cpp @@ -593,7 +593,7 @@ namespace geoff_geometry { bool Box3d::outside(const Box3d& b) const{ // returns true if this box is outside b - if(!b.ok ||! this->ok) // no box set + if(!b.ok || !this->ok) // no box set return false; if(this->max.x < b.min.x) return true;