Skip to content

Commit

Permalink
Fix problem with const
Browse files Browse the repository at this point in the history
  • Loading branch information
joto committed May 16, 2024
1 parent ed4c0fd commit 102093f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node_density/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ class NodeDensityHandler : public osmium::handler::Handler {
{
int num = std::log2(m_width / 256.0);
num = std::min(num, 8);
int const overview_list[] = { 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024 };
int overview_list[] = { 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024 };
dataset_cog->BuildOverviews("AVERAGE", num, overview_list, 0, nullptr, nullptr, nullptr);
}

Expand Down

0 comments on commit 102093f

Please sign in to comment.