diff options
Diffstat (limited to 'src/binary-reader-opcnt.cc')
-rw-r--r-- | src/binary-reader-opcnt.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/binary-reader-opcnt.cc b/src/binary-reader-opcnt.cc index e7ab6f32..72a4fdc9 100644 --- a/src/binary-reader-opcnt.cc +++ b/src/binary-reader-opcnt.cc @@ -143,12 +143,12 @@ bool operator!=(const OpcodeInfo& lhs, const OpcodeInfo& rhs) { } bool operator<(const OpcodeInfo& lhs, const OpcodeInfo& rhs) { - if (lhs.opcode_ < rhs.opcode_) return true; - if (lhs.opcode_ > rhs.opcode_) return false; - if (lhs.kind_ < rhs.kind_) return true; - if (lhs.kind_ > rhs.kind_) return false; - if (lhs.data_ < rhs.data_) return true; - if (lhs.data_ > rhs.data_) return false; + if (lhs.opcode_ < rhs.opcode_) { return true; } + if (lhs.opcode_ > rhs.opcode_) { return false; } + if (lhs.kind_ < rhs.kind_) { return true; } + if (lhs.kind_ > rhs.kind_) { return false; } + if (lhs.data_ < rhs.data_) { return true; } + if (lhs.data_ > rhs.data_) { return false; } return false; } |