Skip to content

Commit

Permalink
fixing typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Niveditha Ramasubramanian committed Aug 8, 2024
1 parent 3f05ba6 commit 25a75e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ class NoiseMap

NoiseMap merge(NoiseMap* prev){
int incre=0;
for (size_t i = 0; i < 920; ++i) { //920 is the total number of chips in MFT
for (size_t i = 0; i < (int)mNoisyPixels.size(); ++i) { //920 is the total number of chips in MFT
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]) {
Expand Down

0 comments on commit 25a75e6

Please sign in to comment.