mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Replace TypePointer with Type const*
This commit is contained in:
@@ -537,7 +537,7 @@ string IRGenerator::generateGetter(VariableDeclaration const& _varDecl)
|
||||
// In each iteration of the loop below, we consume one parameter, perform an
|
||||
// index access, reassign the yul variable `slot` and move @a currentType further "down".
|
||||
// The initial value of @a currentType is only used if we skip the loop completely.
|
||||
TypePointer currentType = _varDecl.annotation().type;
|
||||
Type const* currentType = _varDecl.annotation().type;
|
||||
|
||||
vector<string> parameters;
|
||||
vector<string> returnVariables;
|
||||
|
||||
Reference in New Issue
Block a user