From 46452bdc5f40a6ee50ecf48d6ae893af0d8a5e5a Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Thu, 28 Oct 2021 22:36:07 -0700 Subject: [PATCH] update to zig 0.9.0-dev.1524+d2f9646d9 --- ulid.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ulid.zig b/ulid.zig index 18f1be0ff714e610c7a342051ff1a5ce0a5c27d8..84c69b0cf6d7b47c78891f06e27ddb0f055d9629 100644 --- a/ulid.zig +++ b/ulid.zig @@ -7,9 +7,9 @@ const extras = @import("extras"); pub const Factory = struct { epoch: i64, - rand: *std.rand.Random, + rand: std.rand.Random, - pub fn init(epoch: i64, rand: *std.rand.Random) Factory { + pub fn init(epoch: i64, rand: std.rand.Random) Factory { return Factory{ .epoch = epoch, .rand = rand, -- 2.54.0