Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: bmqp protocol Wconv warns #257

Merged
merged 12 commits into from
May 13, 2024
6 changes: 3 additions & 3 deletions src/groups/bmq/bmqp/bmqp_protocol.t.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1262,9 +1262,9 @@ static void test3_flagUtils()
bmqp::StorageHeaderFlags::Enum currFlag =
static_cast<bmqp::StorageHeaderFlags::Enum>(currFlagVal);

PVV(test.d_line
<< ": Testing: " << " StorageHeaderFlagUtil::isSet('"
<< flagsString << "', " << currFlag << ")");
PVV(test.d_line << ": Testing: "
<< " StorageHeaderFlagUtil::isSet('"
<< flagsString << "', " << currFlag << ")");

if (currFlag == test.d_value) {
const bool expectedIsSet = (currFlag == test.d_value);
Expand Down
Loading