Fix tests on C++03

This commit is contained in:
Andrzej Krzemienski
2021-12-09 22:22:05 +01:00
parent 7dd512a019
commit 56568445b9

View File

@ -33,7 +33,7 @@ template <typename To, typename From>
void test_convert_assign() void test_convert_assign()
{ {
optional<To> oi; optional<To> oi;
oi = From{}; oi = From();
BOOST_TEST(oi); BOOST_TEST(oi);
} }