remove unnecessary pub

This commit is contained in:
Brendan Hansknecht 2025-01-01 14:19:41 -08:00
parent 0d800252f3
commit b9832dd6d3
No known key found for this signature in database
GPG key ID: 0EA784685083E75B

View file

@ -176,9 +176,9 @@ pub const Dec = fn (?[*]u8) callconv(.C) void;
const REFCOUNT_MAX_ISIZE: isize = 0;
// Only top bit set.
pub const REFCOUNT_IS_ATOMIC_MASK: isize = std.math.minInt(isize);
const REFCOUNT_IS_ATOMIC_MASK: isize = std.math.minInt(isize);
// All other bits of the refcount.
pub const REFCOUNT_VALUE_MASK = ~REFCOUNT_IS_ATOMIC_MASK;
const REFCOUNT_VALUE_MASK = ~REFCOUNT_IS_ATOMIC_MASK;
pub const IntWidth = enum(u8) {
U8 = 0,