-
Notifications
You must be signed in to change notification settings - Fork 767
Remove not needed system header includes. #9090
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
Remove not needed system header includes. #9090
Conversation
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 made some suggestions
Head branch was pushed to by a user without write access
bac4319 to
3dc020b
Compare
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 made some suggestions
| #include "SACoreSoftMacro.h" | ||
| #include "SimulatedAnnealingCore.h" | ||
| #include "boost/polygon/polygon.hpp" | ||
| #include "clusterEngine.h" |
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.
warning: included header polygon.hpp is not used directly [misc-include-cleaner]
| #include "clusterEngine.h" | |
| #include "clusterEngine.h" |
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.
Header is used, but they don't have the correct annotations ( which I attempt to fix upstream boostorg/polygon#98 ).
3dc020b to
87ef3ad
Compare
|
approved in concept; will merge when the CI passes |
Signed-off-by: Henner Zeller <h.zeller@acm.org>
87ef3ad to
e24666b
Compare
|
clang-tidy review says "All clean, LGTM! 👍" |
|
is the CI failure something from the change or just a CI glitch ? |
|
real failures, eg https://jenkins.openroad.tools/job/OpenROAD-Public/job/PR-9090-head/5/pipeline-overview/log?nodeId=264 [2025-12-23T10:42:35.773Z] #9 119.0 /OpenROAD/src/gui/src/dbDescriptors.cpp:1313:8: error: ‘priority_queue’ is not a member of ‘std’ |
|
ok, I think for now let's abandon this. We should first add all missing headers before we remove some. clang-tidy gets confused with that. |
No description provided.