GCC buildfix (can't use things without definitions in templates).

Could also have included base/logging.h but meh.
This commit is contained in:
Henrik Rydgård 2018-03-27 16:28:33 +02:00
parent d125fa00e1
commit 6505f7762c

View File

@ -315,7 +315,7 @@ private:
Insert(old[i].hash, old[i].value);
}
}
ILOG("Grew hashmap capacity from %d to %d", oldCapacity, capacity_);
INFO_LOG(G3D, "Grew hashmap capacity from %d to %d", oldCapacity, capacity_);
_assert_msg_(SYSTEM, oldCount == count_, "PrehashMap: count should not change in Grow()");
}
struct Pair {