drop dependency on boost.detail

This commit is contained in:
Andrzej Krzemienski
2024-01-03 21:41:26 +01:00
parent a1dbd3b67d
commit 01e80d2b87
10 changed files with 34 additions and 257 deletions

View File

@ -123,6 +123,7 @@ void test_basics( )
optional<T> oa ( a ) ;
optional<T> ob ( a );
check_initialized(oa);
oa = a ;
@ -132,7 +133,7 @@ void test_basics( )
optional<T> const oa2 ( oa ) ;
check_initialized_const(oa2);
oa = oa ;
oa = ob ;
check_initialized(oa);
oa = def ;