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