-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
CPP: Add parent class for delete and delete[] #14058
Conversation
b98c6f0
to
384029f
Compare
384029f
to
d699201
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.
The changes LGTM (modulo a few QLDoc suggestions). We should probably add a "deprecated" change note to this PR.
I guess we should also do a DCA run to make sure we didn't mess up some join ordering by adding the new parent class?
Co-authored-by: Mathias Vorreiter Pedersen <[email protected]>
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.
LGTM!
This adds a parent to
delete
anddelete[]
so that they can be handled together. This also renamesgetAllocatorCall
intogetDeallocatorCall
and fixes some incorrect documentation.I split this out of the IR work.