mirror of https://github.com/CGAL/cgal
Merge pull request #6255 from afabri/Advancing_front-fix_example-GF
Advancing Front Reconstruction: Remove unused variable in example
This commit is contained in:
commit
32757f7fbe
|
|
@ -53,7 +53,6 @@ int main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
std::ifstream in((argc>1)?argv[1]:CGAL::data_file_path("points_3/half.xyz"));
|
std::ifstream in((argc>1)?argv[1]:CGAL::data_file_path("points_3/half.xyz"));
|
||||||
std::vector<Point_3> points;
|
std::vector<Point_3> points;
|
||||||
std::vector<Facet> facets;
|
|
||||||
Mesh m;
|
Mesh m;
|
||||||
|
|
||||||
std::copy(std::istream_iterator<Point_3>(in),
|
std::copy(std::istream_iterator<Point_3>(in),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue