Commit 90026f8e authored by Dominik Charousset's avatar Dominik Charousset

Fix Wparentheses warning

parent 48533332
...@@ -87,7 +87,7 @@ struct fixture { ...@@ -87,7 +87,7 @@ struct fixture {
res.i = str.begin(); res.i = str.begin();
res.e = str.end(); res.e = str.end();
detail::parser::read_ini(res, f); detail::parser::read_ini(res, f);
if (res.code == pec::success != expect_success) if ((res.code == pec::success) != expect_success)
CAF_MESSAGE("unexpected parser result state: " << res.code); CAF_MESSAGE("unexpected parser result state: " << res.code);
return std::move(f.log); return std::move(f.log);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment