-
Notifications
You must be signed in to change notification settings - Fork 0
test of Q_Unused #53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
test of Q_Unused #53
Conversation
… into averageProfile updateing from remote
Co-authored-by: Julien Staub <atsju2@yahoo.fr>
Co-authored-by: Julien Staub <atsju2@yahoo.fr>
Co-authored-by: Julien Staub <atsju2@yahoo.fr>
Cpp-Linter Report
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| for (double rad = -1.; rad < 1.; rad += steps){ | ||
| int dx, dy; | ||
| // Main Sampling Loop | ||
| for (double rad = -1.0; rad < 1.0; rad += steps) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-tidy diagnostic
profileplot.cpp:431:5: warning: [clang-analyzer-security.FloatLoopCounter]
Variable 'rad' with floating point type 'double' should not be used as a loop counter
431 | for (double rad = -1.0; rad < 1.0; rad += steps) {
| ^ ~~~ ~~~
profileplot.cpp:431:5: note: Variable 'rad' with floating point type 'double' should not be used as a loop counter
431 | for (double rad = -1.0; rad < 1.0; rad += steps) {
| ^ ~~~ ~~~
No description provided.