mirror of
https://github.com/rbock/sqlpp11.git
synced 2025-12-31 18:20:23 -06:00
Fixed a bunch of missing initializations
This commit is contained in:
@@ -29,10 +29,10 @@
|
||||
|
||||
int remove(int, char**)
|
||||
{
|
||||
MockDb db;
|
||||
MockDb db{};
|
||||
|
||||
test::TabPerson p;
|
||||
test::TabFeature q;
|
||||
const auto p = test::TabPerson{};
|
||||
const auto q = test::TabFeature{};
|
||||
|
||||
db(remove_from(p).using_(p, q).where(p.feature == q.id and q.fatal == true));
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user