Replace std.rand references with std.Random

This commit is contained in:
e4m2
2024-02-08 15:21:35 +01:00
parent 9af077d71e
commit 8d56e472c9
34 changed files with 71 additions and 79 deletions

View File

@@ -328,7 +328,7 @@ test "RwLock - concurrent access" {
}
fn writer(self: *Self, thread_idx: usize) !void {
var prng = std.rand.DefaultPrng.init(thread_idx);
var prng = std.Random.DefaultPrng.init(thread_idx);
var rnd = prng.random();
while (true) {