From 56568445b94b496d22d3791b6770367c319a2da9 Mon Sep 17 00:00:00 2001 From: Andrzej Krzemienski Date: Thu, 9 Dec 2021 22:22:05 +0100 Subject: [PATCH] Fix tests on C++03 --- test/optional_test_convert_assign.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/optional_test_convert_assign.cpp b/test/optional_test_convert_assign.cpp index 2caaa18..518421c 100644 --- a/test/optional_test_convert_assign.cpp +++ b/test/optional_test_convert_assign.cpp @@ -33,7 +33,7 @@ template void test_convert_assign() { optional oi; - oi = From{}; + oi = From(); BOOST_TEST(oi); }