-
Notifications
You must be signed in to change notification settings - Fork 396
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
Change self() to protected in Method, SymbolReferenceTable, AliasBuilder #5803
Conversation
For reference, this PR relates to issue #5780 |
Would you mind rebasing this change to bring it up to date with the latest master? I want to verify it builds on a downstream project, but it is currently failing to build because it needs changes committed after this PR was created. Thanks. |
Sorry, @0xdaryl for replying this late.
And sure I will do that. |
Hey @0xdaryl |
Thanks. Downstream testing was successful. Sorry I didn't notice this before, but you have to update the forward copyright date in all the files you changed to 2021 (please). |
Just to confirm that means only In 4 files I have to change to 2021 |
You changed three files in three separate commits. The copyright updates shouldn't be in a separate commit as it is easy enough to amend your existing ones. Something like this should work:
|
This comment has been minimized.
This comment has been minimized.
Signed-off-by: Abhi <abhiasawale510@gmail.com>
Signed-off-by: Abhi <abhiasawale510@gmail.com>
Signed-off-by: Abhi <abhiasawale510@gmail.com>
Heh, I hadn't noticed the copyright date for I think it would be ok to add a separate commit to this PR to update the copyright for that file. @0xdaryl agree? |
The PR looks fine. Apologies, but I don't understand the comment about OMRCompilation.cpp/hpp. How is that related to this PR? |
@genie-omr build all |
@0xdaryl I had updated the self() to protected of |
OK, sure. Please add as a separate commit here. |
Signed-off-by: Abhi <abhiasawale510@gmail.com>
I have pushed a commit for |
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.
Previous set of commits passed CI testing. Latest change was a comment change only. Skipping CI.
np. Thanks for the contribution. Please keep them coming! :-) |
The self() instance method is not supposed to be publicly visible in
extensible classes like
OMR::AliasBuilder
,OMR::Method
,OMR::SymbolReferenceTable
; It should be made protectedIssue: #5780