| 5 | namespace |
| 6 | { |
| 7 | bool IsDiffsAvailable(storage::diffs::NameDiffInfoMap const & diffs) |
| 8 | { |
| 9 | return std::any_of(diffs.cbegin(), diffs.cend(), [](auto const & d) { return d.second.m_isApplied == false; }); |
| 10 | } |
| 11 | } // namespace |
| 12 | |
| 13 | namespace storage |
no test coverage detected