Skip to content

Instantly share code, notes, and snippets.

@bo0ts
Created December 20, 2012 10:17
Show Gist options
  • Save bo0ts/4344425 to your computer and use it in GitHub Desktop.
Save bo0ts/4344425 to your computer and use it in GitHub Desktop.
diff --git a/Triangulation_2/include/CGAL/Triangulation_2.h b/Triangulation_2/include/CGAL/Triangulation_2.h
index 204e113..3ce6bea 100644
--- a/Triangulation_2/include/CGAL/Triangulation_2.h
+++ b/Triangulation_2/include/CGAL/Triangulation_2.h
@@ -592,7 +592,7 @@ private:
const double nan =
std::numeric_limits<typename Kernel::FT>::quiet_NaN();
this->_infinite_vertex->set_point(CGAL::Point_2<Kernel>(nan, nan));
- };
+ }
// overload for weighted points when the FT has quiet NaNs
template <typename Kernel>
@@ -607,7 +607,7 @@ private:
const double nan =
std::numeric_limits<typename Kernel::FT>::quiet_NaN();
this->_infinite_vertex->set_point(CGAL::Point_2<Kernel>(nan, nan));
- };
+ }
#endif // not CGAL_TRIANGULATION_2_DONT_INIT_INF_VERTEX_WITH_NAN
// template members
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment