Replace TypePointer with Type const*

This commit is contained in:
Mathias Baumann
2021-03-23 11:47:19 +01:00
parent 8c583784c0
commit e197ebbdd1
50 changed files with 347 additions and 353 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ using namespace solidity::tools;
void DotSyntax::endVisit(FunctionCall const& _functionCall)
{
TypePointer type = _functionCall.annotation().type;
Type const* type = _functionCall.annotation().type;
if (auto const funcType = dynamic_cast<FunctionType const*>(type))
{
if (funcType->valueSet())