diff --git a/Apps/Examples/viewer.cpp b/Apps/Examples/viewer.cpp index 6db942c013bb87bcad3630668f7aa4b2794c48a6..a5fd588b194e3d232290128bcff36f71580753b2 100644 --- a/Apps/Examples/viewer.cpp +++ b/Apps/Examples/viewer.cpp @@ -246,7 +246,7 @@ void Viewer::exportMesh(std::string& filename) Algo::Export::exportOFF(myMap, position, filename.c_str(), allDarts) ; else if (extension.compare(0, 4, std::string(".ply")) == 0) { - std::vector attributes ; + std::vector attributes ; attributes.push_back(&position) ; Algo::Export::exportPLYnew(myMap, attributes, filename.c_str(), true, allDarts) ; }