diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-06 23:27:41 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-06 23:27:41 +0800 |
commit | 293344b4733e2de8f9159f3b73bbdd6e4a475195 (patch) | |
tree | a3a8047d9add8aff65e0c3f9eabdb1e67cb937a0 /ExpressionCompiler.h | |
parent | 2c9ff4747d81a34125e976a65d6eca8cb5349c9d (diff) | |
download | dexon-solidity-293344b4733e2de8f9159f3b73bbdd6e4a475195.tar.gz dexon-solidity-293344b4733e2de8f9159f3b73bbdd6e4a475195.tar.zst dexon-solidity-293344b4733e2de8f9159f3b73bbdd6e4a475195.zip |
SHA3 of string literals now should work
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 70cc2426..006858cb 100644 --- a/ExpressionCompiler.h +++ b/ExpressionCompiler.h @@ -103,7 +103,7 @@ private: Location const& _location, unsigned _memoryOffset = 0); /// Appends code that moves a type to memory /// @returns the number of bytes copied to memory - unsigned moveTypeToMemory(Type const& _type, Location const& _location, unsigned _memoryOffset); + unsigned moveTypeToMemory(Type const& _type, Location const& _location, unsigned _memoryOffset, bool _padToWordBoundaries = true); /// 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, |