From a5a75fdce82879ec11dfda2791baa2f4b1a507cf Mon Sep 17 00:00:00 2001 From: Daniel Murphy Date: Sun, 7 Sep 2014 18:13:00 +1000 Subject: [PATCH] Remove un-convertable comment --- src/template.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/template.c b/src/template.c index f98f84e8f199..f067fedd1613 100644 --- a/src/template.c +++ b/src/template.c @@ -4356,7 +4356,7 @@ MATCH deduceType(RootObject *o, Scope *sc, Type *tparam, TemplateParameters *par { if ((!e->elements || !e->elements->dim) && e->type->toBasetype()->nextOf()->ty == Tvoid && - (tparam->ty == Tarray/* || tparam->ty == Tsarray || tparam->ty == Taarray*/)) + tparam->ty == Tarray) { // tparam:T[] <- e:[] (void[]) result = deduceEmptyArrayElement();