Run clang-format over C++ files

This commit is contained in:
Olivier Goffart 2022-08-16 18:06:22 +02:00 committed by Olivier Goffart
parent 1884497308
commit ca6dfc0cb5
12 changed files with 141 additions and 107 deletions

View file

@ -24,7 +24,6 @@ SCENARIO("Basic usage")
REQUIRE(prop2.get() == 42 + 4);
prop.set(55);
REQUIRE(prop2.get() == 55 + 4);
}
REQUIRE(prop.get() == 55);
@ -32,7 +31,6 @@ SCENARIO("Basic usage")
REQUIRE(prop.get() == 33);
}
SCENARIO("Set after binding")
{
Property<int> prop;