-
-
Notifications
You must be signed in to change notification settings - Fork 890
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
[CURA-11359] sanitize code #1986
Conversation
- name: Upload the detailed tests report | ||
uses: actions/upload-artifact@v3 | ||
if: ${{ always() }} | ||
with: | ||
name: LastTest.log | ||
path: | | ||
build/Release/Testing/Temporary/LastTest.log | ||
retention-days: 5 | ||
|
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.
should this be part of this PR? seems seperated to me
can it be removed?
- name: Upload the detailed tests report | |
uses: actions/upload-artifact@v3 | |
if: ${{ always() }} | |
with: | |
name: LastTest.log | |
path: | | |
build/Release/Testing/Temporary/LastTest.log | |
retention-days: 5 |
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.
Good catch.. I thought this could be part of it, otherwise it would be lost. Should I make a mini-PR for it ?
Also, there are some merge conflicts |
Use at() instead or brackets Co-authored-by: Casper Lamboo <[email protected]>
Remove useless code Co-authored-by: Casper Lamboo <[email protected]>
The main purpose of this PR is to remove all the compilation warnings issued when using the
enable_extensive_warnings
option is set. On the currant master branch, there are 16000+ warnings which makes it completely impossible to use them relevantly.Most notable changes made:
_
as suffix to diferentiate them from local variablesProximityPointLink
,ClientSocket
).spdlog
/fmt
versions to suppress some warnings coming from them. This comes wih the same update for synsepalum-dulcificum and also for gradual flow pluginSome parts of the code have become less readable, especially because of the numbers conversions. This emphasizes a global code issue that various types are used and mixed together, which should not happen. This should be fixed along the way.