mirror of https://github.com/CGAL/cgal
change type of numpts_in_pqr to unsigned int
Signed-off-by: Panagiotis Cheilaris <philaris@cs.ntua.gr>
This commit is contained in:
parent
ef23e1a490
commit
926f5ec0ca
|
|
@ -2516,7 +2516,7 @@ private:
|
||||||
bool is_q_point = q.is_point();
|
bool is_q_point = q.is_point();
|
||||||
bool is_r_point = r.is_point();
|
bool is_r_point = r.is_point();
|
||||||
|
|
||||||
int numpts_in_pqr =
|
unsigned int numpts_in_pqr =
|
||||||
((is_p_point)? 1 : 0) +
|
((is_p_point)? 1 : 0) +
|
||||||
((is_q_point)? 1 : 0) +
|
((is_q_point)? 1 : 0) +
|
||||||
((is_r_point)? 1 : 0) ;
|
((is_r_point)? 1 : 0) ;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue