mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-18 20:15:05 +00:00
remove unnecessary pub
This commit is contained in:
parent
0d800252f3
commit
b9832dd6d3
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue