We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50e4318 commit 6311b0dCopy full SHA for 6311b0d
src/beman/optional/tests/test_constructor_fail.cpp
@@ -83,8 +83,7 @@ void test_constructors_dangling() {
83
beman::optional::optional<const std::string&> o11 = std::move(t6);
84
85
auto&& t7 = makeCRefToOptionalRefWrap(); // std::optional<std::reference_wrapper<T>> cv &
86
- static_assert(
87
- std::is_same_v<decltype(t7), const beman::optional::optional<std::reference_wrapper<std::string>>&>);
+ static_assert(std::is_same_v<decltype(t7), const beman::optional::optional<std::reference_wrapper<std::string>>&>);
88
beman::optional::optional<std::string&> o12 = t7;
89
beman::optional::optional<const std::string&> o13 = t7;
90
0 commit comments