Skip to content

Commit

Permalink
Merge pull request #2 from alibuild/alibot-cleanup-13356
Browse files Browse the repository at this point in the history
Please consider the following formatting changes to #13356
  • Loading branch information
nivram-phy authored Aug 8, 2024
2 parents 6d434f6 + f51a8dd commit effdb02
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 effdb02

Please sign in to comment.