mirror of https://github.com/CGAL/cgal
replaced unnecessary "else if" by else, thus removing compiler warning;
bug supplied by Andreas on 1/3/2010 (email)
This commit is contained in:
parent
c73424e9a0
commit
1a00096bb7
|
|
@ -932,7 +932,7 @@ private:
|
||||||
const Site_2* pt;
|
const Site_2* pt;
|
||||||
if ( p_.is_point() ) { pt = &p_; }
|
if ( p_.is_point() ) { pt = &p_; }
|
||||||
else if ( q_.is_point() ) { pt = &q_; }
|
else if ( q_.is_point() ) { pt = &q_; }
|
||||||
else if ( r_.is_point() ) { pt = &r_; }
|
else { pt = &r_; }
|
||||||
|
|
||||||
if ( is_endpoint_of(*pt, t) ) {
|
if ( is_endpoint_of(*pt, t) ) {
|
||||||
Site_2 tp = other_site(*pt, t);
|
Site_2 tp = other_site(*pt, t);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue