authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-05-13 12:51:32 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-05-13 12:51:32 -07:00
log7bc4afb1acbb58cbb3960f50a147ea8f8e4fc7f2
treef98204b2560f1d5ce42a4d510fdae05099c77f0a
parent20dfd5a8b3781fed36dbeebfcf32bfe26f1115e6
signaturebadge-check Signed by SSH key SHA256:4hHJbtBRU58AYXwjL7fkz2fnQHdiye8x1QpTCQ0sHNw

remove a usingnamespace


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

ulid.zig+3-1
......@@ -37,7 +37,9 @@ pub const ULID = struct {
3737
3838 pub const BaseType = string;
3939
40 usingnamespace extras.StringerJsonStringifyMixin(@This());
40 pub fn jsonStringify(self: @This(), json_stream: anytype) !void {
41 try json_stream.write(&self.bytes());
42 }
4143
4244 pub fn parse(alloc: std.mem.Allocator, value: BaseType) !ULID {
4345 if (value.len != 26) return error.Ulid;