From d6039bc6867d1918bbdb6f1bfa066a971d0fe550 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=82=E4=B9=8B=E9=92=B3?= Date: Fri, 24 Jul 2026 13:14:34 +0000 Subject: [PATCH] fix: /* */ inside doxygen block prematurely closes comment --- include/vde/curves/surface_intersection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/vde/curves/surface_intersection.h b/include/vde/curves/surface_intersection.h index 78fdcd7..612e2c2 100644 --- a/include/vde/curves/surface_intersection.h +++ b/include/vde/curves/surface_intersection.h @@ -44,7 +44,7 @@ struct IntersectionCurve { * @code{.cpp} * auto curves = intersect_surfaces(cyl, sphere, 6, 1e-5); * for (auto& c : curves) { - * for (auto& p : c.points) { /* 使用交线上的点 */ } + * for (auto& p : c.points) { // 使用交线上的点 } * } * @endcode * @ingroup curves