Skip to content

Commit

Permalink
Add NOLINT to prevent warning of magic number
Browse files Browse the repository at this point in the history
The CI contains a check to prevent warning about magic numbers.
  • Loading branch information
Garados007 committed Nov 1, 2023
1 parent 6edee3b commit cb49aa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Packages/MIES/MIES_Utilities.ipf
Original file line number Diff line number Diff line change
Expand Up @@ -5712,7 +5712,7 @@ Function CalculateNiceLength(variable range , variable multiple)
return round(div) * multiple
endif

return multiple * 10^(round(numDigits))
return multiple * 10^(round(numDigits)) // NOLINT
End

/// @brief Remove unused rows from the passed wave and return a copy of it.
Expand Down

0 comments on commit cb49aa1

Please sign in to comment.