CGAL_error -> CGAL_error_msg, where needed

This commit is contained in:
Eric Berberich 2007-11-08 09:47:59 +00:00
parent 90dc131102
commit e85ca42af0
3 changed files with 6 additions and 6 deletions

View File

@ -546,7 +546,7 @@ public:
Comparison_result operator()(const Point_2 & point1,
const Point_2 & point2) const
{
CGAL_error( "There is no vertical identification arc!");
CGAL_error_msg( "There is no vertical identification arc!");
return SMALLER;
}
};
@ -2305,7 +2305,7 @@ public:
CGAL_precondition(has_on(point));
CGAL_precondition(z_sign(plane.orthogonal_direction()) != ZERO);
#if !defined(CGAL_FULL_X_MONOTONE_GREAT_CIRCULAR_ARC_ON_SPHERE_IS_SUPPORTED)
CGAL_error( "Full x-monotone arcs are not supported!");
CGAL_error_msg( "Full x-monotone arcs are not supported!");
#endif
}

View File

@ -409,13 +409,13 @@ public:
/*! Clear the internal representation and auxiliary data structures */
void clear()
{
CGAL_error( "Not implemented yet!");
CGAL_error_msg( "Not implemented yet!");
}
/*! returns true if the representation is empty */
bool is_empty() const
{
CGAL_error( "Not implemented yet!");
CGAL_error_msg( "Not implemented yet!");
return true;
}
@ -425,7 +425,7 @@ public:
*/
unsigned int degree(Vertex_const_handle vh) const
{
CGAL_error( "Not implemented yet!");
CGAL_error_msg( "Not implemented yet!");
return vh->degree();
}
#endif

View File

@ -58,7 +58,7 @@ template <class GeomTraits, class Dcel>
void Arr_spherical_topology_traits_2<GeomTraits, Dcel>::
assign(const Self & other)
{
CGAL_error( "Not implemented!");
CGAL_error_msg( "Not implemented!");
// Clear the current DCEL and duplicate the other DCEL.
m_dcel.delete_all();