diff options
author | Andrii Riabushenko <cdome@bk.ru> | 2019-07-25 23:18:20 +0100 |
---|---|---|
committer | Andrii Riabushenko <cdome@bk.ru> | 2019-07-25 23:18:20 +0100 |
commit | 4c73139316fc7853b58f298a978ccd95aac6abe8 (patch) | |
tree | 8f39b17104808c10422c607d7ff024cb7be9d951 /compiler/semexprs.nim | |
parent | 95856ab8d3db88709c39c6809e81b8ea539b2e8b (diff) | |
download | Nim-4c73139316fc7853b58f298a978ccd95aac6abe8.tar.gz |
revert changes
Diffstat (limited to 'compiler/semexprs.nim')
-rw-r--r-- | compiler/semexprs.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/semexprs.nim b/compiler/semexprs.nim index 316b4ab78..733df2c40 100644 --- a/compiler/semexprs.nim +++ b/compiler/semexprs.nim @@ -289,7 +289,7 @@ proc semConv(c: PContext, n: PNode): PNode = elif op.kind in {nkPar, nkTupleConstr} and targetType.kind == tyTuple: op = fitNode(c, targetType, op, result.info) of convNotNeedeed: - message(c, n.info, hintConvFromXtoItselfNotNeeded, result.typ.typeToString) + message(c.config, n.info, hintConvFromXtoItselfNotNeeded, result.typ.typeToString) of convNotLegal: result = fitNode(c, result.typ, result.sons[1], result.info) if result == nil: @@ -2588,7 +2588,7 @@ proc semExpr(c: PContext, n: PNode, flags: TExprFlags = {}): PNode = result.kind = nkCall result = semExpr(c, result, flags) of nkBind: - message(c, n.info, warnDeprecated, "bind is deprecated") + message(c.config, n.info, warnDeprecated, "bind is deprecated") result = semExpr(c, n.sons[0], flags) of nkTypeOfExpr, nkTupleTy, nkTupleClassTy, nkRefTy..nkEnumTy, nkStaticTy: if c.matchedConcept != nil and n.len == 1: |