fix: remove remaining /* ... */ inside doxygen blocks
CI / Build & Test (push) Failing after 31s
CI / Release Build (push) Failing after 31s

This commit is contained in:
茂之钳
2026-07-24 11:14:27 +00:00
parent fba37f7065
commit 980cb32468
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -131,7 +131,7 @@ public:
* @note 时间复杂度 O(n²),适用于顶点数 < 1000 的多边形
*
* @code{.cpp}
* Polygon2D poly(/* CCW vertices */);
* Polygon2D poly(CCW vertices);
* auto tris = poly.triangulate();
* for (auto& t : tris) {
* // 顶点: poly.vertices()[t[0]], t[1], t[2]