fixed optional<optional<T>&> case

This commit is contained in:
Andrzej Krzemienski
2016-05-17 00:54:09 +02:00
parent 0755ab7b4e
commit 08076e3964
7 changed files with 64 additions and 0 deletions

View File

@ -465,10 +465,12 @@ int main()
test_optional_ref<int>();
test_optional_ref<ScopeGuard>();
test_optional_ref<Abstract>();
test_optional_ref< optional<int> >();
test_optional_const_ref<int>();
test_optional_const_ref<ScopeGuard>();
test_optional_const_ref<Abstract>();
test_optional_const_ref< optional<int> >();
return boost::report_errors();
}