Skip to content

Commit

Permalink
Add some additional layout inspection functions (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
daveedvdv authored Oct 31, 2023
1 parent 8e92864 commit de37b10
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions 2996_reflection/reflection.md
Original file line number Diff line number Diff line change
Expand Up @@ -1063,6 +1063,7 @@ namespace std::meta {
consteval auto is_explicit(info entity) -> bool;
consteval auto is_override(info entity) -> bool;
consteval auto is_pure_virtual(info entity) -> bool;
consteval auto is_bit_field(info entity) -> bool;
consteval auto has_static_storage_duration(info r) -> bool;

consteval auto is_nsdm(info entity) -> bool;
Expand Down Expand Up @@ -1167,6 +1168,8 @@ namespace std::meta {

consteval auto bit_offset_of(info entity) -> size_t;
consteval auto bit_size_of(info entity) -> size_t;

consteval auto alignment_of(info entity) -> size_t;
}
```
:::
Expand Down

0 comments on commit de37b10

Please sign in to comment.