aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/ref_count.zig2
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;