Fix missing quote in error message for invalid Yul types

This commit is contained in:
Alex Beregszaszi
2020-07-10 21:06:09 +01:00
parent 65ed93d99f
commit 20dd66f398
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -234,7 +234,7 @@ void AsmAnalyzer::operator()(VariableDeclaration const& _varDecl)
m_errorReporter.typeError(
3947_error,
variable.location,
"Assigning value of type \"" + givenType.str() + "\" to variable of type \"" + variable.type.str() + "."
"Assigning value of type \"" + givenType.str() + "\" to variable of type \"" + variable.type.str() + "\"."
);
}
}