diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-11-06 14:41:49 +0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-11-06 14:41:49 +0000 |
commit | cfaea07444a0011aa7d91ce1bcc8f105b8f283fa (patch) | |
tree | 67a5f2ececd0b962a916f4f3249ac8bd8da24bbc /src/fix-ng/primops.hh | |
parent | 569e7940f878f27b0fb9d3c8e8abfc29f3379103 (diff) |
* `null' is a nullary primop.
Diffstat (limited to 'src/fix-ng/primops.hh')
-rw-r--r-- | src/fix-ng/primops.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fix-ng/primops.hh b/src/fix-ng/primops.hh index 775ec5568..76d587afd 100644 --- a/src/fix-ng/primops.hh +++ b/src/fix-ng/primops.hh @@ -25,7 +25,7 @@ Expr primBaseNameOf(EvalState & state, Expr arg); Expr primToString(EvalState & state, Expr arg); /* Return the null value. */ -Expr primNull(EvalState & state, Expr arg); +Expr primNull(EvalState & state); /* Determine whether the argument is the null value. */ Expr primIsNull(EvalState & state, Expr arg); |