| author | |
| committer | |
| log | 46452bdc5f40a6ee50ecf48d6ae893af0d8a5e5a |
| tree | 8ee9149d82a1ef6b34115f768b858f010f32b4ee |
| parent | 6dd5abbe4d72caf88188ec0d1cb56bcad4cd95b4 |
1 files changed, 2 insertions(+), 2 deletions(-)
ulid.zig+2-2| ... | ... | @@ -7,9 +7,9 @@ const extras = @import("extras"); |
| 7 | 7 | |
| 8 | 8 | pub const Factory = struct { |
| 9 | 9 | epoch: i64, |
| 10 | rand: *std.rand.Random, | |
| 10 | rand: std.rand.Random, | |
| 11 | 11 | |
| 12 | pub fn init(epoch: i64, rand: *std.rand.Random) Factory { | |
| 12 | pub fn init(epoch: i64, rand: std.rand.Random) Factory { | |
| 13 | 13 | return Factory{ |
| 14 | 14 | .epoch = epoch, |
| 15 | 15 | .rand = rand, |