closure is now default calling convention for proc types

This commit is contained in:
Araq
2012-07-24 08:28:05 +02:00
parent 09a4c2f0ad
commit 033dc50c69
2 changed files with 1 additions and 2 deletions

View File

@@ -817,7 +817,7 @@ proc semTypeNode(c: PContext, n: PNode, prev: PType): PType =
s.typ = result
if n.sons[1].kind == nkEmpty or n.sons[1].len == 0:
if result.callConv == ccDefault:
#result.callConv = ccClosure
result.callConv = ccClosure
Message(n.info, warnImplicitClosure, renderTree(n))
else:
pragma(c, s, n.sons[1], procTypePragmas)

View File

@@ -16,7 +16,6 @@ New pragmas:
- make toplevel but in a scope vars local; make procs there inner procs
- fix evals.nim with closures
- implement "closure tuple consists of a single 'ref'" optimization
- make closure default calling convention for proc types
- make 'raiseHook' take a closure and provide push and pop for this
--> Lisp-style exception system