diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-05 22:05:58 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-06 16:38:04 +0800 |
commit | 337b952f53d4eb24e6ae28386f26b4f69a33d935 (patch) | |
tree | f9d5eb6b70a77d0ad4f55336e4bd951f29cb2b95 /AST.cpp | |
parent | f09c6fffc9f55b5208560d6550134bf854970db8 (diff) | |
download | dexon-solidity-337b952f53d4eb24e6ae28386f26b4f69a33d935.tar.gz dexon-solidity-337b952f53d4eb24e6ae28386f26b4f69a33d935.tar.zst dexon-solidity-337b952f53d4eb24e6ae28386f26b4f69a33d935.zip |
Fixes after rebase
Diffstat (limited to 'AST.cpp')
-rw-r--r-- | AST.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -487,7 +487,7 @@ void FunctionCall::checkTypeRequirements() // and then ask if that is implicitly convertible to the struct represented by the // function parameters TypePointers const& parameterTypes = functionType->getParameterTypes(); - if (functionType->getLocation() !=FunctionType::Location::SHA3 && parameterTypes.size() != m_arguments.size()) + if (functionType->getLocation() != FunctionType::Location::SHA3 && parameterTypes.size() != m_arguments.size()) BOOST_THROW_EXCEPTION(createTypeError("Wrong argument count for function call.")); if (m_names.empty()) // LTODO: Totally ignoring sha3 case for named arguments for now just for the rebase to work |