diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-09-27 01:50:43 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-09-27 18:15:27 +0800 |
commit | a657d3b1a165d9ec14f9875db2380954f9ca37cf (patch) | |
tree | 0d59869bb934cd34b8e3a87d10ed7aa3d3c82536 /libsolidity/codegen/CompilerUtils.h | |
parent | 9c62647f19541f875590ff61bca9042e1139f9da (diff) | |
download | dexon-solidity-a657d3b1a165d9ec14f9875db2380954f9ca37cf.tar.gz dexon-solidity-a657d3b1a165d9ec14f9875db2380954f9ca37cf.tar.zst dexon-solidity-a657d3b1a165d9ec14f9875db2380954f9ca37cf.zip |
Make most of the parameters mandatory in encodeToMemory
Diffstat (limited to 'libsolidity/codegen/CompilerUtils.h')
-rw-r--r-- | libsolidity/codegen/CompilerUtils.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libsolidity/codegen/CompilerUtils.h b/libsolidity/codegen/CompilerUtils.h index 5e45699b..b239bde6 100644 --- a/libsolidity/codegen/CompilerUtils.h +++ b/libsolidity/codegen/CompilerUtils.h @@ -102,10 +102,10 @@ public: /// @note the locations of target reference types are ignored, because it will always be /// memory. void encodeToMemory( - TypePointers const& _givenTypes = {}, - TypePointers const& _targetTypes = {}, - bool _padToWords = true, - bool _copyDynamicDataInPlace = false, + TypePointers const& _givenTypes, + TypePointers const& _targetTypes, + bool _padToWords, + bool _copyDynamicDataInPlace, bool _encodeAsLibraryTypes = false ); |