Reformatted using clang-format

Please use clang-format before submitting code, e.g via the pre-commit
supplied in the repo (thanks AndiDog)
This commit is contained in:
rbock
2015-09-13 21:33:19 +02:00
parent 46c565c5c5
commit 09f23cea0a
168 changed files with 11984 additions and 11583 deletions

View File

@@ -29,13 +29,11 @@
int remove(int, char**)
{
MockDb db;
MockDb db;
test::TabPerson p;
test::TabFeature q;
test::TabPerson p;
test::TabFeature q;
db(remove_from(p)
.using_(p, q)
.where(p.feature == q.id and q.fatal == true));
return 0;
db(remove_from(p).using_(p, q).where(p.feature == q.id and q.fatal == true));
return 0;
}