mirror of https://github.com/CGAL/cgal
int -> size_t
This commit is contained in:
parent
f6c700da1b
commit
a83ca3c44e
|
|
@ -376,7 +376,7 @@ public:
|
||||||
|
|
||||||
void skip_to_next_vertex( std::size_t current_vertex);
|
void skip_to_next_vertex( std::size_t current_vertex);
|
||||||
|
|
||||||
void scan_facet( std::size_t& size, int CGAL_assertion_code(current_facet)) {
|
void scan_facet( std::size_t& size, std::size_t CGAL_assertion_code(current_facet)) {
|
||||||
CGAL_assertion( current_facet < size_of_facets());
|
CGAL_assertion( current_facet < size_of_facets());
|
||||||
if ( binary()){
|
if ( binary()){
|
||||||
Integer32 i32;
|
Integer32 i32;
|
||||||
|
|
|
||||||
|
|
@ -72,11 +72,11 @@ generic_copy_OFF( File_scanner_OFF& scanner,
|
||||||
for ( i = 0; i < scanner.size_of_facets(); i++) {
|
for ( i = 0; i < scanner.size_of_facets(); i++) {
|
||||||
if ( ! in)
|
if ( ! in)
|
||||||
return;
|
return;
|
||||||
Integer32 no;
|
std::size_t no;
|
||||||
scanner.scan_facet( no, i);
|
scanner.scan_facet( no, i);
|
||||||
writer.write_facet_begin( no);
|
writer.write_facet_begin( no);
|
||||||
for ( int j = 0; j < no; j++) {
|
for ( int j = 0; j < no; j++) {
|
||||||
Integer32 index;
|
std::size_t index;
|
||||||
scanner.scan_facet_vertex_index( index, i);
|
scanner.scan_facet_vertex_index( index, i);
|
||||||
writer.write_facet_vertex_index( index);
|
writer.write_facet_vertex_index( index);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue