diff options
author | Christian <c@ethdev.com> | 2015-02-11 21:32:46 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2015-02-12 18:33:10 +0800 |
commit | 9b8cf4af1db58f3b38ca3172faf53dc5deab84ce (patch) | |
tree | 92b63ed6a3993e6ce7277db71c077bba199981f8 /ExpressionCompiler.h | |
parent | 8a2879a603b256dbff9c4592943c48e68fba1aea (diff) | |
download | dexon-solidity-9b8cf4af1db58f3b38ca3172faf53dc5deab84ce.tar.gz dexon-solidity-9b8cf4af1db58f3b38ca3172faf53dc5deab84ce.tar.zst dexon-solidity-9b8cf4af1db58f3b38ca3172faf53dc5deab84ce.zip |
Moved copy code to CompilerUtils.
Diffstat (limited to 'ExpressionCompiler.h')
-rw-r--r-- | ExpressionCompiler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ExpressionCompiler.h b/ExpressionCompiler.h index dd26881f..e0cc75ce 100644 --- a/ExpressionCompiler.h +++ b/ExpressionCompiler.h @@ -149,7 +149,7 @@ private: void storeValue(Expression const& _expression, Type const& _sourceType, bool _move = false) const; /// Stores zero in the lvalue. /// @a _expression is the current expression, used for error reporting. - void setToZero(Expression const& _expression) const; + void setToZero(Expression const& _expression, Type const& _type) const; /// Convenience function to convert the stored reference to a value and reset type to NONE if /// the reference was not requested by @a _expression. void retrieveValueIfLValueNotRequested(Expression const& _expression); |