Skip to content

Commit fd86c9e

Browse files
committed
Unit Testが通らないので元の仕様にRevert
1 parent b5bc42c commit fd86c9e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/polygon_mesh/mesh_extractor.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,7 @@ namespace {
6060
auto result = AreaMeshFactory::gridMerge(city_model, options, lod, geo_reference, extents);
6161
// グループごとのノードを追加します。
6262
for (auto& [group_grid_id, mesh] : result) {
63-
const auto & [group_id, grid_id] = group_grid_id;
64-
auto node = Node("group" + std::to_string(group_id) + "_grid" + std::to_string(grid_id), std::move(mesh));
63+
auto node = Node("group" + std::to_string(group_grid_id.first), std::move(mesh));
6564
lod_node.addChildNode(std::move(node));
6665
}
6766
}

0 commit comments

Comments
 (0)