vhdlpp: Removed an unnecessary check.

This commit is contained in:
Maciej Suminski 2016-01-29 16:46:42 +01:00
parent 08150eae83
commit 0f3f8907c3
1 changed files with 0 additions and 2 deletions

View File

@ -579,8 +579,6 @@ const VType* ExpArithmetic::resolve_operand_types_(const VType*t1, const VType*t
if (t1->type_match(t2))
return t1;
if (t2->type_match(t2))
return t2;
return 0;
}