| 247 | struct ScopeHelper : public StackListEntry<ScopeHelper> |
| 248 | { |
| 249 | ScopeHelper(const size_t len) |
| 250 | : mLength{len} |
| 251 | { |
| 252 | } |
| 253 | |
| 254 | const size_t mLength; //!< Length of the scope as it was _before_ this declaration was appended. |
| 255 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected