Skip to content

Commit 95fb399

Browse files
committed
workaround for unused variable warning
gcc 13.2 complains about unused variable 'point' inside the constexpr block
1 parent 4d75941 commit 95fb399

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

source/opencascade/manifold_lib.cc

+1
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,7 @@ namespace OpenCASCADE
242242
{
243243
for (const auto &point : surrounding_points)
244244
{
245+
(void)point;
245246
Assert(closest_point(sh, point, tolerance).distance(point) <
246247
std::max(tolerance * point.norm(), tolerance),
247248
ExcPointNotOnManifold<spacedim>(point));

0 commit comments

Comments
 (0)