diff options
author | Christian <c@ethdev.com> | 2014-11-05 22:04:33 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2014-11-05 22:04:33 +0800 |
commit | f0c73b7a54cedfe2bad89ab992514ec31df0f926 (patch) | |
tree | 221576114f0d5fd8ea95f605c1255791d73feea9 /AST.cpp | |
parent | c1f7a1665f17c5f9865534c7a26827cfbf6f3dd5 (diff) | |
download | dexon-solidity-f0c73b7a54cedfe2bad89ab992514ec31df0f926.tar.gz dexon-solidity-f0c73b7a54cedfe2bad89ab992514ec31df0f926.tar.zst dexon-solidity-f0c73b7a54cedfe2bad89ab992514ec31df0f926.zip |
Stylistic corrections.
Diffstat (limited to 'AST.cpp')
-rw-r--r-- | AST.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -344,7 +344,7 @@ void ExpressionStatement::checkTypeRequirements() m_expression->checkTypeRequirements(); } -void Expression::expectType(const Type& _expectedType) +void Expression::expectType(Type const& _expectedType) { checkTypeRequirements(); if (!getType()->isImplicitlyConvertibleTo(_expectedType)) |