replaced unnecessary "else if" by else, thus removing compiler warning;

bug supplied by Andreas on 1/3/2010 (email)
This commit is contained in:
Menelaos Karavelas 2010-03-01 09:21:49 +00:00
parent c73424e9a0
commit 1a00096bb7
1 changed files with 1 additions and 1 deletions

View File

@ -932,7 +932,7 @@ private:
const Site_2* pt;
if ( p_.is_point() ) { pt = &p_; }
else if ( q_.is_point() ) { pt = &q_; }
else if ( r_.is_point() ) { pt = &r_; }
else { pt = &r_; }
if ( is_endpoint_of(*pt, t) ) {
Site_2 tp = other_site(*pt, t);