mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix 'switch' style in FunctionCallGraph
This commit is contained in:
parent
7a85516b82
commit
f58b64800f
@ -268,7 +268,8 @@ ostream& solidity::frontend::operator<<(ostream& _out, CallGraph::Node const& _n
|
||||
case CallGraph::SpecialNode::Entry:
|
||||
_out << "Entry";
|
||||
break;
|
||||
default: solAssert(false, "Invalid SpecialNode type");
|
||||
default:
|
||||
solAssert(false, "Invalid SpecialNode type");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user