Created
December 20, 2012 10:17
-
-
Save bo0ts/4344425 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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