-
-
Notifications
You must be signed in to change notification settings - Fork 493
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
Synthesize ctor_move_dtor
from ctor
and move_dtor
when necessary.
#515
Open
jemc
wants to merge
2
commits into
SanderMertens:master
Choose a base branch
from
jemc:lifecycle-improvements
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+28,052
−27,792
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6fc6165
to
d9907ac
Compare
When `ctor_move_dtor` is not set, but `move` and `dtor` are set, but `move_ctor` is not set, then use `move_dtor` to synthesize it.
See this discord conversation for more background: https://discord.com/channels/633826290415435777/633826290415435781/902342988158623744
d9907ac
to
4a887ed
Compare
e5f5b80
to
bbe0c47
Compare
8506832
to
ef52875
Compare
bdff120
to
8f49fbe
Compare
a540dcc
to
95a0110
Compare
e499aa8
to
a2efbef
Compare
6485712
to
0326782
Compare
07e1c0f
to
5b6eef9
Compare
3a11369
to
e75f6f0
Compare
f277e75
to
61076ac
Compare
0b0631f
to
c4b01f9
Compare
60a3a11
to
a016e60
Compare
d99efe2
to
da0221e
Compare
438bde4
to
220852f
Compare
3b99938
to
ac6cdca
Compare
7874ea5
to
f479787
Compare
ace232e
to
b968586
Compare
301243a
to
4a5784f
Compare
34dc148
to
c9b99e0
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When
ctor_move_dtor
is not set, butmove
anddtor
are set,but
move_ctor
is not set, then usemove_dtor
to synthesize it.