mirror of https://github.com/CGAL/cgal
- Adopt same formatting as other files.
This commit is contained in:
parent
f5108bb11c
commit
e3bd80c5ba
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue