diff options
author | Araq <rumpf_a@web.de> | 2015-03-23 13:10:06 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2015-03-23 13:10:20 +0100 |
commit | e8b4217c3bd798457ae6629fcc48b5b73c172d17 (patch) | |
tree | f18885e93d22e6755b6f1cf4c02978258ae589a8 | |
parent | 0d234af3993341a12eea8528cc7ed7a579e8f4e6 (diff) | |
download | Nim-e8b4217c3bd798457ae6629fcc48b5b73c172d17.tar.gz |
minor todo update
-rw-r--r-- | compiler/semasgn.nim | 2 | ||||
-rw-r--r-- | todo.txt | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/compiler/semasgn.nim b/compiler/semasgn.nim index 7c6abf5ee..208c4ce1a 100644 --- a/compiler/semasgn.nim +++ b/compiler/semasgn.nim @@ -171,7 +171,7 @@ proc liftBodyAux(c: TLiftCtx; t: PType; x, y: PNode) = of tyTuple: liftBodyTup(c, t, x, y) of tyRef: - # we MUST not check for acyclic here as a DAG might still share nodes: + # we MUST NOT check for acyclic here as a DAG might still share nodes: of tyProc: if t.callConv != ccClosure or c.kind != attachedDeepCopy: diff --git a/todo.txt b/todo.txt index 78283e3c3..e32ebf490 100644 --- a/todo.txt +++ b/todo.txt @@ -39,7 +39,8 @@ Low priority: Misc ---- -- make '--implicitStatic:on' the default +- make '--implicitStatic:on' the default; then we can also clean up the + 'static[T]' mess in the compiler! - make tuple unpacking work in a non-var/let context - built-in 'getImpl' - prevent 'alloc(TypeWithGCedMemory)' |