| 41 | } |
| 42 | |
| 43 | void NumpyHeaderCache::UpdateCache(const string &file_name, const numpy::HeaderData &value) { |
| 44 | if (cache_headers_) { |
| 45 | std::unique_lock<std::mutex> cache_lock(cache_mutex_); |
| 46 | header_cache_[file_name] = value; |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | } // namespace detail |
| 51 |
no outgoing calls
no test coverage detected