Skip to content

Commit 6057be8

Browse files
committed
clang format
1 parent c2ef806 commit 6057be8

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

tests/beman/execution/exec-scope-simple-counting.test.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ struct join_receiver {
5454
};
5555

5656
auto ctor() -> void {
57-
{ test_std::simple_counting_scope scope; }
57+
{
58+
test_std::simple_counting_scope scope;
59+
}
5860
test::death([] {
5961
test_std::simple_counting_scope scope;
6062
scope.get_token().try_associate();

tests/beman/execution/include/test/execution.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ struct throws {
5858
auto operator=(const throws&) noexcept(false) -> throws& = default;
5959
};
6060

61-
inline auto
62-
death([[maybe_unused]] auto fun,
63-
[[maybe_unused]] ::std::source_location location = test::source_location::current()) noexcept -> void {
61+
inline auto death([[maybe_unused]] auto fun,
62+
[[maybe_unused]] ::std::source_location location = test::source_location::current()) noexcept
63+
-> void {
6464
#ifndef _MSC_VER
6565
switch (::pid_t rc = ::fork()) {
6666
default: {

0 commit comments

Comments
 (0)