diff options
author | chriseth <c@ethdev.com> | 2015-03-06 22:39:21 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-03-06 22:39:21 +0800 |
commit | 8de5ff5c25c812512fe46ecb7bbe8a219f4a6b2a (patch) | |
tree | 426eae81990025192a09977f79c678db5d418614 /Types.h | |
parent | 11e943fc6a23c78279fcda01fb5acdc28c6fd6e3 (diff) | |
download | dexon-solidity-8de5ff5c25c812512fe46ecb7bbe8a219f4a6b2a.tar.gz dexon-solidity-8de5ff5c25c812512fe46ecb7bbe8a219f4a6b2a.tar.zst dexon-solidity-8de5ff5c25c812512fe46ecb7bbe8a219f4a6b2a.zip |
Update Types.h
Typo
Diffstat (limited to 'Types.h')
-rw-r--r-- | Types.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -122,7 +122,7 @@ public: /// is not a simple big-endian encoding or the type cannot be stored in calldata. /// If @a _padded then it is assumed that each element is padded to a multiple of 32 bytes. virtual unsigned getCalldataEncodedSize(bool _padded) const { (void)_padded; return 0; } - /// Convenience eversion of @see getCalldataEncodedSize(bool) + /// Convenience version of @see getCalldataEncodedSize(bool) unsigned getCalldataEncodedSize() const { return getCalldataEncodedSize(true); } /// @returns true if the type is dynamically encoded in calldata virtual bool isDynamicallySized() const { return false; } |