Fix 'switch' style in FunctionCallGraph

This commit is contained in:
Kamil Śliwak 2021-02-23 14:02:35 +01:00
parent 7a85516b82
commit f58b64800f

View File

@ -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
{