diff options
author | chriseth <c@ethdev.com> | 2015-06-30 17:54:51 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-07-03 23:25:29 +0800 |
commit | cad3379306cd4f32f51bc9f993498a830d134226 (patch) | |
tree | 06f9b50fbb7e796551acc68a334ecd091370f851 /LValue.h | |
parent | ad459207a3c219d60918545de4a0f34040f3388f (diff) | |
download | dexon-solidity-cad3379306cd4f32f51bc9f993498a830d134226.tar dexon-solidity-cad3379306cd4f32f51bc9f993498a830d134226.tar.gz dexon-solidity-cad3379306cd4f32f51bc9f993498a830d134226.tar.bz2 dexon-solidity-cad3379306cd4f32f51bc9f993498a830d134226.tar.lz dexon-solidity-cad3379306cd4f32f51bc9f993498a830d134226.tar.xz dexon-solidity-cad3379306cd4f32f51bc9f993498a830d134226.tar.zst dexon-solidity-cad3379306cd4f32f51bc9f993498a830d134226.zip |
Memory structs.
Diffstat (limited to 'LValue.h')
-rw-r--r-- | LValue.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -103,7 +103,7 @@ private: class MemoryItem: public LValue { public: - MemoryItem(CompilerContext& _compilerContext, Type const& _type, bool _padded); + MemoryItem(CompilerContext& _compilerContext, Type const& _type, bool _padded = true); virtual unsigned sizeOnStack() const override { return 1; } virtual void retrieveValue(SourceLocation const& _location, bool _remove = false) const override; virtual void storeValue( |