-
Notifications
You must be signed in to change notification settings - Fork 684
Del redundant-static-def in executorch/schema/extended_header.cpp +2 #13875
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
Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/13875
Note: Links to docs will display an error until the docs builds have been completed. ✅ No FailuresAs of commit b6c10f0 with merge base a90e907 ( This comment was automatically generated by Dr. CI and updates every 15 minutes. |
This pull request was exported from Phabricator. Differential Revision: D81359733 |
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.
Review automatically exported from Phabricator review in Meta.
3be4987
to
e0a2fd7
Compare
This pull request was exported from Phabricator. Differential Revision: D81359733 |
…ytorch#13875) Summary: LLVM has a warning `-Wdeprecated-redundant-constexpr-static-def` which raises the warning: > warning: out-of-line definition of constexpr static data member is redundant in C++17 and is deprecated Since we are now on C++20, we can remove the out-of-line definition of constexpr static data members. This diff does so. - If you approve of this diff, please use the "Accept & Ship" button :-) Differential Revision: D81359733
…ytorch#13875) Summary: LLVM has a warning `-Wdeprecated-redundant-constexpr-static-def` which raises the warning: > warning: out-of-line definition of constexpr static data member is redundant in C++17 and is deprecated Since we are now on C++20, we can remove the out-of-line definition of constexpr static data members. This diff does so. - If you approve of this diff, please use the "Accept & Ship" button :-) Differential Revision: D81359733
e0a2fd7
to
b6c10f0
Compare
This pull request was exported from Phabricator. Differential Revision: D81359733 |
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.
Misunderstood the comment on c++20
@pytorchbot label "release notes: none" |
Summary:
LLVM has a warning
-Wdeprecated-redundant-constexpr-static-def
which raises the warning:Since we are now on C++20, we can remove the out-of-line definition of constexpr static data members. This diff does so.
Differential Revision: D81359733