From 996ca5bab4e1ef0fd5bc701da1d7d5922bfa2250 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Pa=C4=91en?= <49401914+ipadjen@users.noreply.github.com> Date: Fri, 12 Jan 2024 11:34:17 +0100 Subject: [PATCH] Check into breaking obj for win exe --- src/io.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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);