This commit is contained in:
Scott E. Graves 2024-12-19 13:04:55 -06:00
parent ead3bcde1a
commit 0348492f6c

View File

@ -93,6 +93,7 @@ auto cache_size_mgr::shrink(std::uint64_t size) -> api_error {
if (cache_size_ >= size) {
cache_size_ -= size;
} else {
// TODO raise warning
cache_size_ = 0U;
}