Enable asserts in fuzz target

This commit is contained in:
2024-05-29 22:00:18 -07:00
parent 10b032076e
commit 16c2bb1d11
3 changed files with 22 additions and 29 deletions

View File

@@ -392,7 +392,7 @@ inline Random seededRandom() {
return Random{seed[0], seed[1]};
}
inline thread_local Random gRandom = seededRandom();
static thread_local Random gRandom = seededRandom();
// ==================== END RANDOM IMPL ====================