Skip to content

Commit 12d9f73

Browse files
author
dweiller
committed
std.compress.zstandard: remove use of usingnamespace
1 parent a34c2de commit 12d9f73

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/std/compress/zstandard.zig

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ const std = @import("std");
22
const Allocator = std.mem.Allocator;
33

44
const types = @import("zstandard/types.zig");
5+
pub const frame = types.frame;
6+
pub const compressed_block = types.compressed_block;
57

68
const RingBuffer = @import("zstandard/RingBuffer.zig");
79
pub const decompress = @import("zstandard/decompress.zig");
8-
pub usingnamespace @import("zstandard/types.zig");
910

1011
pub fn ZstandardStream(
1112
comptime ReaderType: type,

0 commit comments

Comments
 (0)