From 93cae6500f07ddfee57fe8c19cd4254e8076ab73 Mon Sep 17 00:00:00 2001 From: Sylvain Pion Date: Mon, 28 Jul 2008 18:16:14 +0000 Subject: [PATCH] Remove deprecated functions find_conflicts_2 and find_conflicts_3 (deprecated in 2006, and internal). --- .../include/CGAL/Triangulation_3.h | 30 ------------------- 1 file changed, 30 deletions(-) diff --git a/Triangulation_3/include/CGAL/Triangulation_3.h b/Triangulation_3/include/CGAL/Triangulation_3.h index f0a8f7459e8..001bf729054 100644 --- a/Triangulation_3/include/CGAL/Triangulation_3.h +++ b/Triangulation_3/include/CGAL/Triangulation_3.h @@ -621,36 +621,6 @@ public: } protected: - template - Triple - find_conflicts_2(Cell_handle c, const Conflict_test &tester, - Triple it) const { - bool FIND_CONFLICTS_2_DEPRECATED_USE_FIND_CONFLICTS; - return find_conflicts(c,tester,it); - } - - template - Triple - find_conflicts_3(Cell_handle c, const Conflict_test &tester, - Triple it) const { - bool FIND_CONFLICTS_3_DEPRECATED_USE_FIND_CONFLICTS; - return find_conflicts(c,tester,it); - } - // - c is the current cell, which must be in conflict. // - tester is the function object that tests if a cell is in conflict. //