| 44 | // Take ownership to ensure that it doesn't "mutate" |
| 45 | template<typename T> |
| 46 | void assertNotEmpty(LazyInit<T> _lazyInit) { assertInitCalled(std::move(_lazyInit), false); } |
| 47 | |
| 48 | // Take ownership to ensure that it doesn't "mutate" |
| 49 | template<typename T> |
no test coverage detected