diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-02 22:03:44 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-02 22:03:44 +0800 |
commit | 5a374afe62ad2175f16d1c5d4a6e7a07cdea41d2 (patch) | |
tree | 9de2c1388cbc3581835072666ea7b130808162e2 /ExpressionCompiler.h | |
parent | 82bcb7e33a4a00be8145588615c0d7a812fd4ce2 (diff) | |
download | dexon-solidity-5a374afe62ad2175f16d1c5d4a6e7a07cdea41d2.tar.gz dexon-solidity-5a374afe62ad2175f16d1c5d4a6e7a07cdea41d2.tar.zst dexon-solidity-5a374afe62ad2175f16d1c5d4a6e7a07cdea41d2.zip |
Simple mapping accessors working
Diffstat (limited to 'ExpressionCompiler.h')
-rw-r--r-- | ExpressionCompiler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ExpressionCompiler.h b/ExpressionCompiler.h index d93ab28e..7de577e6 100644 --- a/ExpressionCompiler.h +++ b/ExpressionCompiler.h @@ -99,8 +99,8 @@ private: unsigned _memoryOffset = 0); /// Appends code that copies a type to memory. /// @returns the number of bytes copied to memory - unsigned appendTypeCopyToMemory(Type const& _expectedType, TypePointer const& _type, - Location const& _location, unsigned _memoryOffset = 0); + unsigned appendTypeConversionAndMoveToMemory(Type const& _expectedType, Type const& _type, + Location const& _location, unsigned _memoryOffset = 0); /// Appends code that evaluates a single expression and copies it to memory (with optional offset). /// @returns the number of bytes copied to memory unsigned appendExpressionCopyToMemory(Type const& _expectedType, Expression const& _expression, |