We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee0a5ab commit cb1d8f7Copy full SHA for cb1d8f7
libs/acn/LLRPHeader.h
@@ -49,8 +49,8 @@ class LLRPHeader {
49
uint32_t TransactionNumber() const { return m_transaction_number; }
50
51
bool operator==(const LLRPHeader &other) const {
52
- return m_destination_cid == other.m_destination_cid &&
53
- m_transaction_number == other.m_transaction_number;
+ return ((m_destination_cid == other.m_destination_cid) &&
+ (m_transaction_number == other.m_transaction_number));
54
}
55
56
PACK(
0 commit comments