int -> size_t

This commit is contained in:
Andreas Fabri 2010-06-23 15:07:14 +00:00
parent d5b6ba4ef5
commit b2ae121d76
1 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ class SM_io_parser : public Decorator_
std::vector<SFace_handle> SFace_of;
SHalfloop_handle Loop_of[2];
// object mapping for input
int vn,en,ln,fn,i;
std::size_t vn,en,ln,fn,i;
// the number of objects
bool check_sep(const char* sep);
@ -157,7 +157,7 @@ SM_io_parser(std::ostream& iout, const Base& D)
ln(this->number_of_shalfloops()),
fn(this->number_of_sfaces())
{ verbose = (out.iword(CGAL::IO::mode) != CGAL::IO::ASCII &&
out.iword(CGAL::IO::mode) != CGAL::IO::BINARY);
out.iword(CGAL::IO::mode) != CGAL::IO::BINARY);
}