$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Leo Carreon (lcarreon_at_[hidden])
Date: 2020-03-07 23:56:51
Hi Boost.Users,
Iâm using Boost.Test from Boost 1.72.0 and Iâm getting a failure when I perform the following test:
auto string_1 = u8âvalueâs;
auto string_2 = u8âvalueâs;
BOOST_TEST(string_1 == string_2);
However, the problem goes away when I change the test line to:
BOOST_TEST((string_1 == string_2));
What is the reason why Boost.Test is failing without the double parentheses?
Kind regards,
Leo