diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-05-15 18:23:13 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-06-01 19:06:12 +0800 |
commit | 25205cb05b068e0ec116bdc3f8230f9f2f2159f0 (patch) | |
tree | 7f59715c530d13cb9e17a16ce3060df1445c65d2 /AssemblyItem.h | |
parent | 7f55e26eb8fd9c321c679f7e4c758070b8d670c1 (diff) | |
download | dexon-solidity-25205cb05b068e0ec116bdc3f8230f9f2f2159f0.tar.gz dexon-solidity-25205cb05b068e0ec116bdc3f8230f9f2f2159f0.tar.zst dexon-solidity-25205cb05b068e0ec116bdc3f8230f9f2f2159f0.zip |
added error jump instead of STOP instraction in case of exception
Diffstat (limited to 'AssemblyItem.h')
-rw-r--r-- | AssemblyItem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AssemblyItem.h b/AssemblyItem.h index 7d8f3d9a..9eca0a7d 100644 --- a/AssemblyItem.h +++ b/AssemblyItem.h @@ -65,7 +65,7 @@ public: /// @returns the instruction of this item (only valid if type() == Operation) Instruction instruction() const { return Instruction(byte(m_data)); } - /// @returns true iff the type and data of the items are equal. + /// @returns true if the type and data of the items are equal. bool operator==(AssemblyItem const& _other) const { return m_type == _other.m_type && m_data == _other.m_data; } bool operator!=(AssemblyItem const& _other) const { return !operator==(_other); } /// Less-than operator compatible with operator==. |