mirror of https://github.com/CGAL/cgal
remove warnings
This commit is contained in:
parent
9f1fd59afa
commit
767bc40b1d
|
|
@ -226,7 +226,7 @@ class Iterative_radon {
|
|||
public:
|
||||
|
||||
Iterative_radon( RandomAccessIter begin, RandomAccessIter end,
|
||||
Predicate_traits traits, int dim, int num_levels )
|
||||
Predicate_traits traits, int dim, int /*num_levels*/ )
|
||||
: begin(begin), size(end-begin), traits(traits), dim(dim),
|
||||
rng(), dist(0,size-1), generator(rng,dist)
|
||||
{}
|
||||
|
|
|
|||
|
|
@ -175,7 +175,7 @@ OFF_to_nef_3 (std::istream &i_st, Nef_3 &nef_union, bool verb=false)
|
|||
Scan_index_it ind_it = f_it->begin();
|
||||
for (jdx=0; ind_it != f_it->end(); ++ind_it, ++jdx)
|
||||
{ // assertion: index out of range?
|
||||
CGAL_assertion ( 0 <= *ind_it && *ind_it < NOV );
|
||||
CGAL_assertion (*ind_it < NOV );
|
||||
V_f_scan.push_back (V_scan[*ind_it]);
|
||||
V_f.push_back (V[*ind_it]);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue