Skip to content

Commit

Permalink
remove Zero!
Browse files Browse the repository at this point in the history
  • Loading branch information
StavromulaBeta committed Aug 27, 2024
1 parent 2008fbe commit a6812e2
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/runtime.h
Original file line number Diff line number Diff line change
Expand Up @@ -1309,12 +1309,6 @@ static BOOLEAN ___booleanX(BOOLEAN a){ return a; }
static SYMBOL ___symbolX(SYMBOL a) { return a; }
static IO ___ioX(IO a) { return a; }

static BOOLEAN ___zeroX(NUMBER a)
{
if unlikely(a != 0.0) type_error("zero", box_NUMBER(a));
return a;
}

static BOOLEAN ___match(ANY patt, ANY obj) { return match_objects(patt,obj); }

static ANY ___first(LIST lst)
Expand Down

0 comments on commit a6812e2

Please sign in to comment.