[ox/std] Add missing oxExpect to timeMapStrToUuid
All checks were successful
Build / build (push) Successful in 2m32s

This commit is contained in:
Gary Talent 2024-05-11 00:26:57 -05:00
parent d054528e49
commit e8041121d0

View File

@ -45,6 +45,7 @@ uint64_t timeMapStrToUuid(int elemCnt, int lookups, uint64_t seed = 4321) noexce
for (int i = 0; i < lookups; ++i) { for (int i = 0; i < lookups; ++i) {
auto const&k = keys[rand.gen() % keys.size()]; auto const&k = keys[rand.gen() % keys.size()];
map[k]; map[k];
oxExpect(map[k], ox::UUID::fromString(k).unwrap());
} }
return nowMs() - startTime; return nowMs() - startTime;
} }