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 insert(int, char**)
|
||||
{
|
||||
MockDb db;
|
||||
MockDb db{};
|
||||
|
||||
test::TabPerson p;
|
||||
test::TabFeature f;
|
||||
const auto p = test::TabPerson{};
|
||||
const auto f = test::TabFeature{};
|
||||
|
||||
db(insert_into(f).set(f.name = "loves c++", f.fatal = false));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user