diff --git a/src/terminal/ref_counted_set.zig b/src/terminal/ref_counted_set.zig index a2b9da7cf..d99a0baca 100644 --- a/src/terminal/ref_counted_set.zig +++ b/src/terminal/ref_counted_set.zig @@ -374,7 +374,7 @@ pub fn RefCountedSet( } /// Get the current number of non-dead items in the set. - pub fn count(self: *Self) usize { + pub fn count(self: *const Self) usize { return self.living; }