Add vtable_layout.hxx: view_vtable/const_view_vtable for a bare interface (8/20) - #108
Draft
jbcoe wants to merge 1 commit into
Draft
Add vtable_layout.hxx: view_vtable/const_view_vtable for a bare interface (8/20)#108jbcoe wants to merge 1 commit into
jbcoe wants to merge 1 commit into
Conversation
jbcoe
force-pushed
the
reflection/06-types
branch
from
July 28, 2026 11:33
306edcd to
6970ab6
Compare
jbcoe
force-pushed
the
reflection/07-vtable-layout
branch
from
July 28, 2026 11:33
24fe46e to
4f39fde
Compare
jbcoe
force-pushed
the
reflection/06-types
branch
from
July 28, 2026 14:22
6970ab6 to
314baa7
Compare
jbcoe
force-pushed
the
reflection/07-vtable-layout
branch
from
July 28, 2026 14:22
4f39fde to
5505612
Compare
jbcoe
force-pushed
the
reflection/06-types
branch
from
July 28, 2026 14:29
314baa7 to
bbf9572
Compare
jbcoe
force-pushed
the
reflection/07-vtable-layout
branch
from
July 28, 2026 14:29
5505612 to
21027f7
Compare
jbcoe
force-pushed
the
reflection/06-types
branch
from
July 28, 2026 15:14
bbf9572 to
7df9909
Compare
jbcoe
force-pushed
the
reflection/07-vtable-layout
branch
from
July 28, 2026 15:14
21027f7 to
6d1ac14
Compare
jbcoe
force-pushed
the
reflection/06-types
branch
from
July 28, 2026 15:28
7df9909 to
db7ac9b
Compare
jbcoe
force-pushed
the
reflection/07-vtable-layout
branch
from
July 28, 2026 15:28
6d1ac14 to
f4abbb2
Compare
jbcoe
force-pushed
the
reflection/06-types
branch
from
July 28, 2026 18:27
db7ac9b to
df0a9ff
Compare
jbcoe
force-pushed
the
reflection/07-vtable-layout
branch
from
July 28, 2026 18:27
f4abbb2 to
de7fe50
Compare
jbcoe
force-pushed
the
reflection/06-types
branch
from
July 28, 2026 19:37
df0a9ff to
75d37d4
Compare
jbcoe
force-pushed
the
reflection/07-vtable-layout
branch
from
July 28, 2026 19:37
de7fe50 to
9abf339
Compare
jbcoe
force-pushed
the
reflection/06-types
branch
from
July 28, 2026 20:22
75d37d4 to
4fe9f8d
Compare
jbcoe
force-pushed
the
reflection/07-vtable-layout
branch
from
July 28, 2026 20:22
9abf339 to
c61fbe4
Compare
jbcoe
force-pushed
the
reflection/06-types
branch
from
July 29, 2026 09:48
4fe9f8d to
990611b
Compare
jbcoe
force-pushed
the
reflection/07-vtable-layout
branch
from
July 29, 2026 09:48
c61fbe4 to
19b2958
Compare
…face Synthesizes per-interface vtable structs via define_aggregate, matching the manual backend's const_view_vtable_X/view_vtable_X split. define_aggregate can only complete a type declared in the same scope as the consteval block completing it; worked around with a consteval function template holding a local incomplete struct.
jbcoe
force-pushed
the
reflection/06-types
branch
from
July 29, 2026 10:14
990611b to
9fed4c4
Compare
jbcoe
force-pushed
the
reflection/07-vtable-layout
branch
from
July 29, 2026 10:14
19b2958 to
967f4f8
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.
Synthesizes per-interface vtable structs via define_aggregate,
matching the manual backend's const_view_vtable_X/view_vtable_X
split. define_aggregate can only complete a type declared in the same
scope as the consteval block completing it; worked around with a
consteval function template holding a local incomplete struct.