Skip to content

Commit cb1d8f7

Browse files
authored
Improve clarity with more braces
1 parent ee0a5ab commit cb1d8f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/acn/LLRPHeader.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ class LLRPHeader {
4949
uint32_t TransactionNumber() const { return m_transaction_number; }
5050

5151
bool operator==(const LLRPHeader &other) const {
52-
return m_destination_cid == other.m_destination_cid &&
53-
m_transaction_number == other.m_transaction_number;
52+
return ((m_destination_cid == other.m_destination_cid) &&
53+
(m_transaction_number == other.m_transaction_number));
5454
}
5555

5656
PACK(

0 commit comments

Comments
 (0)