Skip to content
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

fix(diagnostic_graph_aggregator): fix uselessOverride warning #7768

Merged
merged 4 commits into from
Jul 2, 2024

Conversation

veqcc
Copy link
Contributor

@veqcc veqcc commented Jul 1, 2024

Description

This is a fix based on cppcheck uselessOverride warning

system/diagnostic_graph_aggregator/src/common/graph/units.hpp:142:8: style: The function 'update_status' overrides a function in a base class but is identical to the overridden function [uselessOverride]
  void update_status() override;
       ^
system/diagnostic_graph_aggregator/src/common/graph/units.hpp:132:8: note: Virtual function in base class
  void update_status() override;
       ^
system/diagnostic_graph_aggregator/src/common/graph/units.hpp:142:8: note: Function in derived class
  void update_status() override;
       ^

Though the program is totally the same, I found a TODO comment // TODO(Takagi, Isamu): update link flags..
If you do not want to delete it, please come up with some workarounds!

Related links

Parent Issue:

  • Link

How was this PR tested?

Notes for reviewers

None.

Interface changes

None.

Effects on system behavior

None.

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>
@veqcc veqcc requested a review from isamu-takagi as a code owner July 1, 2024 09:43
@github-actions github-actions bot added the component:system System design and integration. (auto-assigned) label Jul 1, 2024
Copy link

github-actions bot commented Jul 1, 2024

Thank you for contributing to the Autoware project!

🚧 If your pull request is in progress, switch it to draft mode.

Please ensure:

@veqcc veqcc self-assigned this Jul 1, 2024
@veqcc veqcc added the run:build-and-test-differential Mark to enable build-and-test-differential workflow. (used-by-ci) label Jul 1, 2024
Copy link

codecov bot commented Jul 1, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 64.67%. Comparing base (c2f9579) to head (fe8f80c).
Report is 3 commits behind head on main.

Additional details and impacted files
@@             Coverage Diff             @@
##             main    #7768       +/-   ##
===========================================
+ Coverage   28.40%   64.67%   +36.27%     
===========================================
  Files        1584       18     -1566     
  Lines      115463      620   -114843     
  Branches    49233      285    -48948     
===========================================
- Hits        32796      401    -32395     
+ Misses      73662      156    -73506     
+ Partials     9005       63     -8942     
Flag Coverage Δ
differential 64.67% <ø> (?)
total ?

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@isamu-takagi
Copy link
Contributor

@veqcc As noted in the TODO comments, this will be processed differently in the future. So this is intentional, can I disable the check on a code block?

@veqcc
Copy link
Contributor Author

veqcc commented Jul 1, 2024

@isamu-takagi
Thank you for your quick response.

As noted in the TODO comments, this will be processed differently in the future. So this is intentional, can I disable the check on a code block?

OK, then I will restore the code block and use inline cppcheck suppression (I'll do it tomorrow).
Btw, do you know when the TODO comment will be resolved?

veqcc and others added 2 commits July 2, 2024 08:35
Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>
@veqcc veqcc removed the run:build-and-test-differential Mark to enable build-and-test-differential workflow. (used-by-ci) label Jul 1, 2024
@veqcc
Copy link
Contributor Author

veqcc commented Jul 1, 2024

@isamu-takagi
Could you wait till the cppcheck-differential workflow is updated sp that PRs which changes only .hpp or .cpp can avoid false positive or false negative results?

Related Link (TIER IV internal): https://star4.slack.com/archives/C070FQMREVB/p1719877783942809

Added:
completed two changes on cppcheck-diffferantial and ready for merge

@veqcc veqcc added the run:build-and-test-differential Mark to enable build-and-test-differential workflow. (used-by-ci) label Jul 2, 2024
@veqcc
Copy link
Contributor Author

veqcc commented Jul 2, 2024

@isamu-takagi
Now it's ready for being merged!

@isamu-takagi
Copy link
Contributor

Btw, do you know when the TODO comment will be resolved?

It's not decided yet. I'll update this if I need more detailed diagnostics after using graph.

Copy link
Contributor

@isamu-takagi isamu-takagi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you. LGTM

@veqcc veqcc merged commit 5bac5c6 into autowarefoundation:main Jul 2, 2024
39 checks passed
@veqcc veqcc deleted the fix/useless_override_warning branch July 2, 2024 07:32
mitukou1109 pushed a commit to mitukou1109/autoware.universe that referenced this pull request Jul 2, 2024
…refoundation#7768)

* fix(diagnostic_graph_aggregator): fix uselessOverride warning

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>

* restore and suppress inline

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>

* style(pre-commit): autofix

---------

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
kosuke55 pushed a commit to tier4/autoware_universe that referenced this pull request Jul 2, 2024
…refoundation#7768)

* fix(diagnostic_graph_aggregator): fix uselessOverride warning

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>

* restore and suppress inline

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>

* style(pre-commit): autofix

---------

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
kyoichi-sugahara pushed a commit to kyoichi-sugahara/autoware.universe that referenced this pull request Jul 3, 2024
…refoundation#7768)

* fix(diagnostic_graph_aggregator): fix uselessOverride warning

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>

* restore and suppress inline

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>

* style(pre-commit): autofix

---------

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
palas21 pushed a commit to palas21/autoware.universe that referenced this pull request Jul 12, 2024
…refoundation#7768)

* fix(diagnostic_graph_aggregator): fix uselessOverride warning

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>

* restore and suppress inline

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>

* style(pre-commit): autofix

---------

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: palas21 <palas21@itu.edu.tr>
tby-udel pushed a commit to tby-udel/autoware.universe that referenced this pull request Jul 14, 2024
…refoundation#7768)

* fix(diagnostic_graph_aggregator): fix uselessOverride warning

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>

* restore and suppress inline

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>

* style(pre-commit): autofix

---------

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
KhalilSelyan pushed a commit that referenced this pull request Jul 22, 2024
* fix(diagnostic_graph_aggregator): fix uselessOverride warning

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>

* restore and suppress inline

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>

* style(pre-commit): autofix

---------

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
component:system System design and integration. (auto-assigned) run:build-and-test-differential Mark to enable build-and-test-differential workflow. (used-by-ci)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants