From ada549c4d4ad10e25fbc1584a2034aee5b89f8fc Mon Sep 17 00:00:00 2001 From: Erick Ahmed Date: Thu, 13 Nov 2025 10:55:22 +0100 Subject: [PATCH] test: fix error: 'p' was not declared in this scope --- tests/occt/point-test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/occt/point-test.cpp b/tests/occt/point-test.cpp index fe54c25..0c7d7b5 100644 --- a/tests/occt/point-test.cpp +++ b/tests/occt/point-test.cpp @@ -95,7 +95,7 @@ TEST_CASE("Test point creation, query and deletion behaviour", "[point]") { } SECTION("Clear single point") { - point_shape_t* point = make_point(1.0, 2.0, 3.0); + point_shape_t* p = make_point(1.0, 2.0, 3.0); double x, y, z; coord_point(p, &x, &y, &z);