Skip to content

Commit 1aa308d

Browse files
committed
MOD: Upgrade clang-format
1 parent 63e5517 commit 1aa308d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/src/scoped_thread_tests.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ TEST(ScopedThreadTests, DefaultCtor) { const ScopedThread target{}; }
2626
TEST(ScopedThreadTests, MoveCtor) {
2727
auto res = 0;
2828
const auto initThread = [&res] { return ScopedThread{[&res] { res = 9; }}; };
29-
{ const ScopedThread target{initThread()}; } // joins
29+
{
30+
const ScopedThread target{initThread()};
31+
} // joins
3032
ASSERT_EQ(res, 9);
3133
}
3234

0 commit comments

Comments
 (0)