diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2020-10-09 02:28:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-09 11:28:21 +0200 |
commit | 16e8005031cdc017405ea0c85ddd03c7adf0cef0 (patch) | |
tree | 57111552d5bd6dd704498130a9388d42c3002327 /compiler | |
parent | 8fb57d74515348d04dcd8c132e5e3787be80b577 (diff) | |
download | Nim-16e8005031cdc017405ea0c85ddd03c7adf0cef0.tar.gz |
fix gitignore for testament cruft (#15530)
* fix gitignore for testament cruft * fix rendertree => renderTree
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/ccgexprs.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/ccgexprs.nim b/compiler/ccgexprs.nim index 364bcc143..c1469fa60 100644 --- a/compiler/ccgexprs.nim +++ b/compiler/ccgexprs.nim @@ -1410,7 +1410,7 @@ proc handleConstExpr(p: BProc, n: PNode, d: var TLoc): bool = result = false proc genObjConstr(p: BProc, e: PNode, d: var TLoc) = - #echo rendertree e, " ", e.isDeepConstExpr + #echo renderTree e, " ", e.isDeepConstExpr # inheritance in C++ does not allow struct initialization so # we skip this step here: if not p.module.compileToCpp and optSeqDestructors notin p.config.globalOptions: |