| 816 | } |
| 817 | |
| 818 | void BatchAccessLog::Insert(const BatchRecord& batch, const ResourceUsageRange& range, |
| 819 | std::shared_ptr<const CommandExecutionContext::AccessLog> log) { |
| 820 | log_map_.insert(std::make_pair(range, CBSubmitLog(batch, nullptr, std::move(log)))); |
| 821 | } |
| 822 | |
| 823 | // Trim: Remove any unreferenced AccessLog ranges from a BatchAccessLog |
| 824 | // |
no test coverage detected