Skip to content

Commit 9232035

Browse files
committed
Undo formatting changes
1 parent 01cc5c6 commit 9232035

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

tests/constructors.cpp

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
#include "catch.hpp"
22
#include "function_ref.hpp"
33

4-
void foo() {}
5-
struct bar
6-
{
7-
void baz() {}
4+
void foo(){}
5+
struct bar {
6+
void baz(){}
87
};
98

10-
TEST_CASE("Constructors", "[constructors]")
11-
{
9+
TEST_CASE("Constructors", "[constructors]") {
1210
tl::function_ref<void(void)> fr1 = [] {};
1311
tl::function_ref<void(void)> fr2 = foo;
1412
tl::function_ref<void(bar)> fr3 = &bar::baz;

0 commit comments

Comments
 (0)