Getter for recursive type information.
| 264 | |
| 265 | /// Getter for recursive type information. |
| 266 | std::optional<RecInfo> getRecursiveInfo() const noexcept { |
| 267 | return RecTypeInfo; |
| 268 | } |
| 269 | void setRecursiveInfo(uint32_t Index, uint32_t Size) noexcept { |
| 270 | RecTypeInfo = RecInfo{Index, Size}; |
| 271 | } |
no outgoing calls
no test coverage detected