authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-10-28 22:36:07 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-10-28 22:36:07 -07:00
log46452bdc5f40a6ee50ecf48d6ae893af0d8a5e5a
tree8ee9149d82a1ef6b34115f768b858f010f32b4ee
parent6dd5abbe4d72caf88188ec0d1cb56bcad4cd95b4

update to zig 0.9.0-dev.1524+d2f9646d9


1 files changed, 2 insertions(+), 2 deletions(-)

ulid.zig+2-2
......@@ -7,9 +7,9 @@ const extras = @import("extras");
77
88pub const Factory = struct {
99 epoch: i64,
10 rand: *std.rand.Random,
10 rand: std.rand.Random,
1111
12 pub fn init(epoch: i64, rand: *std.rand.Random) Factory {
12 pub fn init(epoch: i64, rand: std.rand.Random) Factory {
1313 return Factory{
1414 .epoch = epoch,
1515 .rand = rand,