From ba4d3271c40a757d63492b57d60a275e75c3e172 Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Thu, 1 Jun 2023 09:35:10 +0200 Subject: [PATCH] remove unnecessary initialization --- external/resinsight/LibCore/cvfPlane.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/resinsight/LibCore/cvfPlane.cpp b/external/resinsight/LibCore/cvfPlane.cpp index 02f38a537..3ce06a507 100644 --- a/external/resinsight/LibCore/cvfPlane.cpp +++ b/external/resinsight/LibCore/cvfPlane.cpp @@ -374,7 +374,7 @@ bool Plane::intersect(const Plane& other, Vec3d* point, Vec3d* direction) const CVF_ASSERT(point); - double invdet = UNDEFINED_DOUBLE; + double invdet; Vec3d normal1 = this->normal(); Vec3d normal2 = other.normal();