Skip to content

Commit

Permalink
Please consider the following formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alibuild committed Aug 8, 2024
1 parent 6d434f6 commit f51a8dd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@ class NoiseMap
NoiseMap merge(NoiseMap* prev)
{
int incre = 0;
for (size_t i = 0; i < (int)mNoisyPixels.size(); ++i) {
for (const auto& prev_np : prev->mNoisyPixels[i]) { // only enters this for loop if the "i" chip exists.
for (size_t i = 0; i < (int)mNoisyPixels.size(); ++i) {
for (const auto& prev_np : prev->mNoisyPixels[i]) { // only enters this for loop if the "i" chip exists.
bool existsInCurrentMap = false;
for (const auto& current_np : mNoisyPixels[i]) {
if (prev_np.first == current_np.first) {
Expand Down

0 comments on commit f51a8dd

Please sign in to comment.