diff options
author | chriseth <c@ethdev.com> | 2015-04-15 23:43:23 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-04-15 23:43:23 +0800 |
commit | c7b428fdb14fac12564d52f25f6101b3e38ace46 (patch) | |
tree | fb42b93091694ca5a0b4ba834cecc3b09dcf1669 /CompilerContext.h | |
parent | 0c69d5fdcd3286f47c81dbcbcfb8802861eab8b5 (diff) | |
parent | e1b20fb3a10f629aff172399c6e6111c941f931d (diff) | |
download | dexon-solidity-c7b428fdb14fac12564d52f25f6101b3e38ace46.tar.gz dexon-solidity-c7b428fdb14fac12564d52f25f6101b3e38ace46.tar.zst dexon-solidity-c7b428fdb14fac12564d52f25f6101b3e38ace46.zip |
Merge remote-tracking branch 'ethereum/develop' into sol_overloadingFunctions
Conflicts:
libsolidity/Types.cpp
Diffstat (limited to 'CompilerContext.h')
-rw-r--r-- | CompilerContext.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CompilerContext.h b/CompilerContext.h index 67dd3c94..53d0a89a 100644 --- a/CompilerContext.h +++ b/CompilerContext.h @@ -83,6 +83,7 @@ public: /// Converts an offset relative to the current stack height to a value that can be used later /// with baseToCurrentStackOffset to point to the same stack element. unsigned currentToBaseStackOffset(unsigned _offset) const; + /// @returns pair of slot and byte offset of the value inside this slot. std::pair<u256, unsigned> getStorageLocationOfVariable(Declaration const& _declaration) const; /// Appends a JUMPI instruction to a new tag and @returns the tag |