aboutsummaryrefslogtreecommitdiffstats
path: root/Types.h
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2015-01-16 02:59:35 +0800
committerGav Wood <i@gavwood.com>2015-01-16 02:59:35 +0800
commit911916beb7d8fd9c318d43fdf137727d364a95d2 (patch)
tree21ab383a6cc9e08247085146e6936668c6a98a03 /Types.h
parent80eec8b308e8af3b742e3da47ded927e4e4b388d (diff)
downloaddexon-solidity-911916beb7d8fd9c318d43fdf137727d364a95d2.tar.gz
dexon-solidity-911916beb7d8fd9c318d43fdf137727d364a95d2.tar.zst
dexon-solidity-911916beb7d8fd9c318d43fdf137727d364a95d2.zip
Add blockhash to Solidity.
Autopadding fix.
Diffstat (limited to 'Types.h')
-rw-r--r--Types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Types.h b/Types.h
index 1ccdd706..c011928a 100644
--- a/Types.h
+++ b/Types.h
@@ -348,7 +348,7 @@ public:
/// INTERNAL: jump tag, EXTERNAL: contract address + function index,
/// BARE: contract address (non-abi contract call)
/// OTHERS: special virtual function, nothing on the stack
- enum class Location { INTERNAL, EXTERNAL, SEND, SHA3, SUICIDE, ECRECOVER, SHA256, RIPEMD160, LOG0, LOG1, LOG2, LOG3, LOG4, BARE };
+ enum class Location { INTERNAL, EXTERNAL, SEND, SHA3, SUICIDE, ECRECOVER, SHA256, RIPEMD160, LOG0, LOG1, LOG2, LOG3, LOG4, BLOCKHASH, BARE };
virtual Category getCategory() const override { return Category::FUNCTION; }
explicit FunctionType(FunctionDefinition const& _function, bool _isInternal = true);