Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
kronbichler committed Feb 14, 2024
1 parent b9b635d commit 6542462
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common_code/poisson_operator.h
Expand Up @@ -308,7 +308,7 @@ namespace Poisson
std::map<unsigned int, unsigned int> count;
for (const auto a : distances)
count[a]++;
for (const auto a : count)
for (const auto &a : count)
std::cout << a.first << " " << a.second << " ";
std::cout << std::endl;
}
Expand Down

0 comments on commit 6542462

Please sign in to comment.