diff options
author | 2022-03-16 05:00:47 -0700 | |
---|---|---|
committer | 2022-03-16 05:00:47 -0700 | |
commit | 942c70c79532da099e3a4edff38347240a216605 (patch) | |
tree | 812b18e409102664e90c031704148c17d0c19487 | |
parent | 75fa87482d974dc242bd2408bf75888897bdcecb (diff) | |
download | bun-942c70c79532da099e3a4edff38347240a216605.tar.gz bun-942c70c79532da099e3a4edff38347240a216605.tar.zst bun-942c70c79532da099e3a4edff38347240a216605.zip |
Update ref_count.zig
-rw-r--r-- | src/ref_count.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ref_count.zig b/src/ref_count.zig index 2c72aaeb5..589176c1d 100644 --- a/src/ref_count.zig +++ b/src/ref_count.zig @@ -1,7 +1,5 @@ const std = @import("std"); -pub const RefCountedSlice = struct {}; - pub fn RefCount(comptime Type: type, comptime deinit_on_zero: bool) type { return struct { const AllocatorType = if (deinit_on_zero) std.mem.Allocator else void; |