Changing the UserDefinedValueType::toString to userdefined <name>

This commit is contained in:
hrkrshnn
2021-09-15 17:25:23 +02:00
parent 42c8310a63
commit 48e16ceb88
8 changed files with 37 additions and 37 deletions
+1 -1
View File
@@ -2555,7 +2555,7 @@ bool UserDefinedValueType::operator==(Type const& _other) const
string UserDefinedValueType::toString(bool /* _short */) const
{
return "user defined type " + *definition().annotation().canonicalName;
return *definition().annotation().canonicalName;
}
vector<tuple<string, Type const*>> UserDefinedValueType::makeStackItems() const