forked from boostorg/optional
Fix tests on C++03
This commit is contained in:
@ -33,7 +33,7 @@ template <typename To, typename From>
|
||||
void test_convert_assign()
|
||||
{
|
||||
optional<To> oi;
|
||||
oi = From{};
|
||||
oi = From();
|
||||
BOOST_TEST(oi);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user