small bugfix for eval

This commit is contained in:
Araq
2011-08-19 09:07:23 +02:00
parent 15440ec745
commit ffefb736d9
2 changed files with 28 additions and 1 deletions

View File

@@ -219,7 +219,7 @@ proc getNullValue(typ: PType, info: TLineInfo): PNode =
var t = skipTypes(typ, abstractRange)
result = emptyNode
case t.kind
of tyBool, tyChar, tyInt..tyInt64:
of tyBool, tyEnum, tyChar, tyInt..tyInt64:
result = newNodeIT(nkIntLit, info, t)
of tyFloat..tyFloat128:
result = newNodeIt(nkFloatLit, info, t)