remove warnings

This commit is contained in:
Sébastien Loriot 2011-03-03 18:20:41 +00:00
parent 9f1fd59afa
commit 767bc40b1d
2 changed files with 2 additions and 2 deletions

View File

@ -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)
{}

View File

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