Skip to content

Commit 2ff3bbb

Browse files
committed
Minor fix for map emit change: OptionallyGenerateMetaInit had an unncessary and now incorrect cast.
1 parent 389e7a3 commit 2ff3bbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Clojure/Clojure/CljCompiler/Compiler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2217,7 +2217,7 @@ internal static Expr OptionallyGenerateMetaInit(ParserContext pcon, object form,
22172217
Expr ret = expr;
22182218

22192219
if (RT.meta(form) != null)
2220-
ret = new MetaExpr(ret, (MapExpr)MapExpr.Parse(pcon.EvalOrExpr(), ((IObj)form).meta()));
2220+
ret = new MetaExpr(ret, MapExpr.Parse(pcon.EvalOrExpr(), ((IObj)form).meta()));
22212221

22222222
return ret;
22232223
}

0 commit comments

Comments
 (0)