aboutsummaryrefslogtreecommitdiffstats
path: root/Types.h
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2015-02-10 16:00:50 +0800
committerChristian <c@ethdev.com>2015-02-12 18:33:09 +0800
commit20b4c6900982302fd07df12e2a1f6f0e15886834 (patch)
tree3a202298db494951bb5caa6bf04f92517d525d14 /Types.h
parent1369337808ef5d2e4394336eec78f0cff406d55c (diff)
downloaddexon-solidity-20b4c6900982302fd07df12e2a1f6f0e15886834.tar.gz
dexon-solidity-20b4c6900982302fd07df12e2a1f6f0e15886834.tar.zst
dexon-solidity-20b4c6900982302fd07df12e2a1f6f0e15886834.zip
Tests and some code for msg.data.
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 927ca290..ddcfad9e 100644
--- a/Types.h
+++ b/Types.h
@@ -287,11 +287,11 @@ public:
virtual Category getCategory() const override { return Category::ByteArray; }
ByteArrayType(Location _location, u256 const& _offset, u256 const& _length, bool _dynamicLength):
m_location(_location), m_offset(_offset), m_length(_length), m_dynamicLength(_dynamicLength) {}
+ virtual bool isImplicitlyConvertibleTo(Type const& _convertTo) const override;
virtual bool operator==(const Type& _other) const override;
virtual unsigned getSizeOnStack() const override { return 1; /* TODO */ }
virtual std::string toString() const override { return "bytes"; }
-
private:
Location m_location;
u256 m_offset;