Removed default case from "ExpressionCompiler::visit(FunctionCall...)".

This commit is contained in:
Anurag Dashputre 2018-09-13 15:40:06 +05:30
parent 15c8c0d2cf
commit b86cea033b

View File

@ -1098,8 +1098,6 @@ bool ExpressionCompiler::visit(FunctionCall const& _functionCall)
case FunctionType::Kind::GasLeft: case FunctionType::Kind::GasLeft:
m_context << Instruction::GAS; m_context << Instruction::GAS;
break; break;
default:
solAssert(false, "Invalid function type.");
} }
} }
return false; return false;