| 533 | } |
| 534 | |
| 535 | void unlinkStore(StoreManager *Store, std::string_view Name) { |
| 536 | // Unlink a specific (Store, Name) entry. |
| 537 | std::unique_lock Lock(Mutex); |
| 538 | LinkedStore.erase(LinkedStoreKey{Store, std::string(Name)}); |
| 539 | } |
| 540 | |
| 541 | /// Mutex. |
| 542 | mutable std::shared_mutex Mutex; |
no test coverage detected