mirror of https://github.com/CGAL/cgal
workaround -Wmaybe-uninitialized
The init is legit as it prevents the reader to do a useless loop and the writer to write random number In case of failing to read a face index or the number of faces, the error bit in the stream is set anyway and the user has to check it
This commit is contained in:
parent
a2ae7d8e13
commit
32f40d82a7
|
|
@ -71,12 +71,12 @@ generic_copy_OFF(File_scanner_OFF& scanner,
|
||||||
if(! in)
|
if(! in)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
std::size_t no;
|
std::size_t no = 0;
|
||||||
scanner.scan_facet(no, i);
|
scanner.scan_facet(no, i);
|
||||||
writer.write_facet_begin(no);
|
writer.write_facet_begin(no);
|
||||||
for(std::size_t j=0; j<no; ++j)
|
for(std::size_t j=0; j<no; ++j)
|
||||||
{
|
{
|
||||||
std::size_t index;
|
std::size_t index = 0;
|
||||||
scanner.scan_facet_vertex_index(index, j+1, i);
|
scanner.scan_facet_vertex_index(index, j+1, i);
|
||||||
writer.write_facet_vertex_index(index);
|
writer.write_facet_vertex_index(index);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue