Make gRandom inline

I have no idea why I made it static
This commit is contained in:
2024-06-15 20:18:08 -07:00
parent 43ba21329b
commit 0af75f5e9c

View File

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