fix(tdcgal/enums.cpp): add ;

BREAKING CHANGE:
This commit is contained in:
songsenand 2024-04-15 01:05:26 +08:00
parent 5905691cce
commit 0d4bd1858c
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ void init_enums(py::module &m) {
py::enum_<CGAL::Bounded_side>(m, "Bounded_side")
.value("ON_BOUNDED_SIDE", CGAL::ON_BOUNDED_SIDE)
.value("ON_BOUNDARY", CGAL::ON_BOUNDARY)
.value("ON_UNBOUNDED_SIDE", CGAL::ON_UNBOUNDED_SIDE)
.value("ON_UNBOUNDED_SIDE", CGAL::ON_UNBOUNDED_SIDE);
py::enum_<CGAL::Comparison_result>(m, "Comparison_result")
.value("SMALLER", CGAL::SMALLER)