| 610 | } |
| 611 | |
| 612 | void LatestEventCache::set(std::string tag, const TraceEventFields& contents) { |
| 613 | latest[getAddressIndex()][tag] = contents; |
| 614 | } |
| 615 | |
| 616 | TraceEventFields LatestEventCache::get(std::string const& tag) { |
| 617 | return latest[getAddressIndex()][tag]; |
nothing calls this directly
no test coverage detected