Use correct value in unhandled case assert

This commit is contained in:
sephiroth99 2015-12-30 11:18:11 -05:00
parent 16ade60d37
commit da71bc26a2
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ void Value::Convert(TypeName target_type, RoundMode round_mode) {
return;
}
default:
assert_unhandled_case(target_type);
assert_unhandled_case(type);
return;
}
}