Resolving warnings

This commit is contained in:
Nico Kruithof 2013-03-20 07:55:30 +01:00
parent c79093892a
commit 918062b370
1 changed files with 2 additions and 3 deletions

View File

@ -1208,7 +1208,7 @@ protected:
/// Test whether removing vertex v decreases the dimension of the triangulation.
/// NGHK: Implemented
bool test_dim_down(Vertex_handle v) {
bool test_dim_down(Vertex_handle /*v*/) const {
//test the dimensionality of the resulting triangulation
//upon removing of vertex v
return number_of_vertices() == 1;
@ -1257,10 +1257,9 @@ protected:
}
/// NGHK: Not yet implemented
bool well_oriented(Vertex_handle v) {
bool well_oriented(Vertex_handle v) const {
NGHK_NYI;
typedef typename Geom_traits::Orientation_2 Orientation_2;
Orientation_2 orientation_2 = geom_traits().orientation_2_object();
Face_circulator fc = incident_faces(v), done(fc);
do {
if (!is_infinite(fc)) {