< Number of elements in the array
| 106 | uint32_t isPacked : 1; ///< Ensures no padding (recursively) for the entire span of the struct |
| 107 | uint32_t numElements : 31; ///< Number of elements in the array |
| 108 | constexpr ArrayInfo(bool isPacked, uint32_t numElements) : isPacked(isPacked), numElements(numElements) {} |
| 109 | }; |
| 110 | union |
| 111 | { |
nothing calls this directly
no outgoing calls
no test coverage detected