Skip to content

Commit

Permalink
FFT3DFilter.h: fix warning -Wrange-loop-analysis
Browse files Browse the repository at this point in the history
Signed-off-by: akarin <[email protected]>
  • Loading branch information
AkarinVS committed Jan 14, 2022
1 parent 6c115af commit e69db84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FFT3DFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class ThreadLocalPtrPool {
T* get() noexcept;

~ThreadLocalPtrPool() noexcept {
for (const auto [_, ptr] : pool) {
for (const auto &[_, ptr] : pool) {
Deleter(ptr);
}
}
Expand Down

0 comments on commit e69db84

Please sign in to comment.