| 305 | |
| 306 | |
| 307 | vector<Ref<UndoEntry>> Snapshot::GetUndoEntries() |
| 308 | { |
| 309 | return GetUndoEntries([](size_t, size_t) { return true; }); |
| 310 | } |
| 311 | |
| 312 | |
| 313 | vector<Ref<UndoEntry>> Snapshot::GetUndoEntries(const std::function<bool(size_t, size_t)>& progress) |
nothing calls this directly
no test coverage detected