Add allocator-awareness (16/20) - #116
Draft
jbcoe wants to merge 1 commit into
Draft
Conversation
jbcoe
force-pushed
the
reflection/14-interface-b
branch
from
July 28, 2026 11:33
aabb1fb to
6becbf8
Compare
jbcoe
force-pushed
the
reflection/15-allocator-awareness
branch
from
July 28, 2026 11:33
5913f8a to
049668f
Compare
jbcoe
force-pushed
the
reflection/14-interface-b
branch
from
July 28, 2026 14:22
6becbf8 to
35e8e4e
Compare
jbcoe
force-pushed
the
reflection/15-allocator-awareness
branch
from
July 28, 2026 14:22
049668f to
1c2aae6
Compare
jbcoe
force-pushed
the
reflection/14-interface-b
branch
from
July 28, 2026 14:30
35e8e4e to
b569ee3
Compare
jbcoe
force-pushed
the
reflection/15-allocator-awareness
branch
from
July 28, 2026 14:30
1c2aae6 to
da94e52
Compare
jbcoe
force-pushed
the
reflection/14-interface-b
branch
from
July 28, 2026 15:14
b569ee3 to
f725170
Compare
jbcoe
force-pushed
the
reflection/15-allocator-awareness
branch
from
July 28, 2026 15:14
da94e52 to
695f58c
Compare
jbcoe
force-pushed
the
reflection/14-interface-b
branch
from
July 28, 2026 15:28
f725170 to
0193b27
Compare
jbcoe
force-pushed
the
reflection/15-allocator-awareness
branch
from
July 28, 2026 15:28
695f58c to
c2efa45
Compare
jbcoe
force-pushed
the
reflection/14-interface-b
branch
from
July 28, 2026 18:27
0193b27 to
ad6dea2
Compare
jbcoe
force-pushed
the
reflection/15-allocator-awareness
branch
from
July 28, 2026 18:27
c2efa45 to
5156a95
Compare
jbcoe
force-pushed
the
reflection/14-interface-b
branch
from
July 28, 2026 19:37
ad6dea2 to
5106225
Compare
jbcoe
force-pushed
the
reflection/15-allocator-awareness
branch
from
July 28, 2026 19:37
5156a95 to
39c06c6
Compare
jbcoe
force-pushed
the
reflection/14-interface-b
branch
from
July 28, 2026 20:23
5106225 to
9af9b2a
Compare
jbcoe
force-pushed
the
reflection/15-allocator-awareness
branch
from
July 28, 2026 20:23
39c06c6 to
22d8d16
Compare
jbcoe
force-pushed
the
reflection/14-interface-b
branch
from
July 29, 2026 09:48
9af9b2a to
5557271
Compare
jbcoe
force-pushed
the
reflection/15-allocator-awareness
branch
from
July 29, 2026 09:48
22d8d16 to
8525f80
Compare
protocol<T, Allocator> gains the allocator-extended constructor set plus allocator-aware assignment and swap, matching the Python/libclang backend's protocol_A.h: equal allocators steal the source's pointer, unequal ones move-construct into freshly allocated storage.
jbcoe
force-pushed
the
reflection/14-interface-b
branch
from
July 29, 2026 10:14
5557271 to
188bff0
Compare
jbcoe
force-pushed
the
reflection/15-allocator-awareness
branch
from
July 29, 2026 10:14
8525f80 to
aaffd2f
Compare
This file contains hidden or 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
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.
protocol<T, Allocator> gains the allocator-extended constructor set
plus allocator-aware assignment and swap, matching the
Python/libclang backend's protocol_A.h: equal allocators steal the
source's pointer, unequal ones move-construct into freshly allocated
storage.