keep normal as the default refcounting

This commit is contained in:
Brendan Hansknecht 2022-04-01 15:03:16 -07:00
parent 2093405ffc
commit 3606543ac0

View file

@ -127,7 +127,7 @@ const Refcount = enum {
atomic,
};
const RC_TYPE = Refcount.atomic;
const RC_TYPE = Refcount.normal;
pub fn increfC(ptr_to_refcount: *isize, amount: isize) callconv(.C) void {
if (RC_TYPE == Refcount.none) return;