Skip to content

Commit

Permalink
Merge pull request #8471 from a3d4/fix-controlflowbuilder-compilation…
Browse files Browse the repository at this point in the history
…-error

Fixed ControlFlowBuilder compilation error.
  • Loading branch information
chriseth authored Mar 10, 2020
2 parents bb29a7e + 437ab3d commit 5fd5465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libsolidity/analysis/ControlFlowBuilder.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class ControlFlowBuilder: private ASTConstVisitor, private yul::ASTWalker
void operator()(yul::Assignment const& _assignment) override;
void operator()(yul::FunctionCall const& _functionCall) override;
void operator()(yul::FunctionDefinition const& _functionDefinition) override;
void operator()(yul::Leave const& _leave) override;
void operator()(yul::Leave const& _leaveStatement) override;
bool visit(VariableDeclaration const& _variableDeclaration) override;
bool visit(VariableDeclarationStatement const& _variableDeclarationStatement) override;
bool visit(Identifier const& _identifier) override;
Expand Down

0 comments on commit 5fd5465

Please sign in to comment.