I got meowed by Gidoly

This commit is contained in:
CamilleLaVey 2026-04-01 02:18:59 -04:00 committed by crueter
parent fb53c236b2
commit 1d844296f4

View file

@ -61,7 +61,7 @@ void BufferCache<P>::RunGarbageCollector() {
const u64 threshold = frame_tick - ticks_to_destroy;
boost::container::small_vector<BufferId, 64> expired;
for (auto [id, buffer] : slot_buffers) {
if (buffer.GetFrameTick() < threshold) {
if (buffer->GetFrameTick() < threshold) {
expired.push_back(id);
}
}