- Adopt same formatting as other files.

This commit is contained in:
Sylvain Pion 2000-11-10 17:02:02 +00:00
parent f5108bb11c
commit e3bd80c5ba
2 changed files with 4 additions and 2 deletions

View File

@ -120,7 +120,8 @@ bool
Iso_rectangleC2<R CGAL_CTAG>::
operator==(const Iso_rectangleC2<R CGAL_CTAG> &r) const
{
if ( identical(r) ) return true;
if (identical(r))
return true;
return vertex(0) == r.vertex(0) && vertex(2) == r.vertex(2);
}

View File

@ -101,7 +101,8 @@ inline
bool
SegmentC3<R CGAL_CTAG>::operator==(const SegmentC3<R CGAL_CTAG> &s) const
{
if ( identical(s) ) return true;
if (identical(s))
return true;
return source() == s.source() && target() == s.target();
}