mirror of https://github.com/CGAL/cgal
CGAL_error -> CGAL_error_msg, where needed
This commit is contained in:
parent
90dc131102
commit
e85ca42af0
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in New Issue