| 92 | [[nodiscard]] auto empty() const -> decltype(object_list.empty()) { return object_list.empty(); } |
| 93 | [[nodiscard]] auto begin() const -> decltype(object_list.begin()) { return object_list.begin(); } |
| 94 | [[nodiscard]] auto end() const -> decltype(object_list.end()) { return object_list.end(); } |
| 95 | |
| 96 | LogObjectList(){}; |
| 97 | }; |
no outgoing calls
no test coverage detected