Skip to content

Commit

Permalink
hide unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
sloriot committed Apr 5, 2024
1 parent 3ce1a3f commit de93dad
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,11 +211,11 @@ Kml::Nodes Kml::get_duplicates(const Placemarks& placemarks) {
//! \brief
Kml::Nodes Kml::generate_ids(Placemarks& placemarks) {
// collect all nodes into a single vector
std::size_t polygon_count = 0;
// std::size_t polygon_count = 0;
std::vector<Node> nodes;
for (auto& pm : placemarks) {
for (auto& polygon : pm.polygons) {
polygon_count++;
// polygon_count++;

std::vector<LinearRing*> linear_rings;
linear_rings.push_back(&polygon.outer_boundary);
Expand Down

0 comments on commit de93dad

Please sign in to comment.