Skip to content

Commit 6311b0d

Browse files
committed
Format fix
1 parent 50e4318 commit 6311b0d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/beman/optional/tests/test_constructor_fail.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,7 @@ void test_constructors_dangling() {
8383
beman::optional::optional<const std::string&> o11 = std::move(t6);
8484

8585
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>>&>);
86+
static_assert(std::is_same_v<decltype(t7), const beman::optional::optional<std::reference_wrapper<std::string>>&>);
8887
beman::optional::optional<std::string&> o12 = t7;
8988
beman::optional::optional<const std::string&> o13 = t7;
9089

0 commit comments

Comments
 (0)