diff options
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==. |