diff --git a/src/io.cpp b/src/io.cpp index b938fb5c..e0b91af7 100644 --- a/src/io.cpp +++ b/src/io.cpp @@ -329,7 +329,7 @@ void IO::output_obj(const OutputFeaturesPtr& allFeatures) { std::vector of; std::vector fs(numOutputSurfaces), bs(numOutputSurfaces); - std::vector> dPts(numOutputSurfaces); + std::vector> dPts(numOutputSurfaces); //-- Output points // int count = 0; // to output each building as a separate group for (auto& f : allFeatures) { @@ -441,7 +441,7 @@ void IO::output_cityjson(const OutputFeaturesPtr& allFeatures) { void IO::get_obj_pts(const Mesh& mesh, std::string& fs, std::string& bs, - std::unordered_map& dPts) { + std::unordered_map& dPts) { for (auto& face : mesh.faces()) { if (IO::is_degen(mesh, face)) continue; std::string bsTemp; @@ -614,4 +614,4 @@ std::string IO::gen_key_bucket(const T& p) { } //- Explicit template instantiation template std::string IO::gen_key_bucket(const Point_3& p); -template std::string IO::gen_key_bucket(const Vector_3& p); \ No newline at end of file +template std::string IO::gen_key_bucket(const Vector_3& p);