diff options
| author | 2022-08-25 13:13:09 +0200 | |
|---|---|---|
| committer | 2022-08-25 13:13:09 +0200 | |
| commit | 9eeb4f4641481279895a927f97503d7a6938b2e5 (patch) | |
| tree | 335e50f8a479653e4f513e6ba5daa8fe32144de5 /src/common.hff | |
| parent | 90a57be9d1cf811ba26c09d6c8ac9f27067a5f85 (diff) | |
fix voidness eq issue
Diffstat (limited to 'src/common.hff')
| -rw-r--r-- | src/common.hff | 5 |
1 files changed, 0 insertions, 5 deletions
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; |