Skip to content

Commit 4393df5

Browse files
committed
Format
1 parent 7ff267b commit 4393df5

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/proxy_creation_tests.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1238,7 +1238,8 @@ TEST(ProxyCreationTests, TestMakeProxyObserved) {
12381238
int operator()() const&& noexcept { return 3; }
12391239
} test_callable;
12401240

1241-
pro::proxy<TestFacade> p = pro::make_proxy_observed<TestFacade>(test_callable);
1241+
pro::proxy<TestFacade> p =
1242+
pro::make_proxy_observed<TestFacade>(test_callable);
12421243
static_assert(!noexcept((*p)()));
12431244
static_assert(noexcept((*std::move(p))()));
12441245
ASSERT_EQ((*p)(), 0);

0 commit comments

Comments
 (0)