change type of numpts_in_pqr to unsigned int

Signed-off-by: Panagiotis Cheilaris <philaris@cs.ntua.gr>
This commit is contained in:
Panagiotis Cheilaris 2013-09-11 20:05:29 +02:00
parent ef23e1a490
commit 926f5ec0ca
1 changed files with 1 additions and 1 deletions

View File

@ -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) ;