From 9eeb4f4641481279895a927f97503d7a6938b2e5 Mon Sep 17 00:00:00 2001 From: lemon Date: Thu, 25 Aug 2022 13:13:09 +0200 Subject: fix voidness eq issue --- src/common.hff | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/common.hff') diff --git a/src/common.hff b/src/common.hff index 6b63334..a54fd32 100644 --- a/src/common.hff +++ b/src/common.hff @@ -38,11 +38,6 @@ defmacro foreach_ptr(x, i, a, &body) [ defmacro streq(a,b) [ (strcmp(a,b) == 0) ] defmacro strcieq(a,b) [ (strcasecmp(a,b) == 0) ] -defmacro coalesce(a,b) [ - (do let $x = a; - $x ? $x : b; ) -] - defmacro with_tmpchange(var,x,&body) [ { let $tmp = (var); (var) = x; -- cgit v1.2.3