Add `switch (..) to style checker

This commit is contained in:
Mathias Baumann
2019-11-11 17:44:21 +01:00
parent 24f41bc979
commit e35a23bbcc
9 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -113,7 +113,7 @@ u256 yul::valueOfBoolLiteral(Literal const& _literal)
u256 yul::valueOfLiteral(Literal const& _literal)
{
switch(_literal.kind)
switch (_literal.kind)
{
case LiteralKind::Number:
return valueOfNumberLiteral(_literal);