mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-01-08 14:10:51 -06:00
Fixed a bunch of missing initializations
This commit is contained in:
@@ -32,10 +32,10 @@
|
||||
int Interpret(int, char**)
|
||||
{
|
||||
MockDb db = {};
|
||||
MockDb::_serializer_context_t printer;
|
||||
MockDb::_serializer_context_t printer = {};
|
||||
|
||||
test::TabFoo f;
|
||||
test::TabBar t;
|
||||
const auto f = test::TabFoo{};
|
||||
const auto t = test::TabBar{};
|
||||
select(t.alpha.as(t.beta));
|
||||
|
||||
serialize(insert_into(t).columns(t.beta, t.gamma), printer).str();
|
||||
|
||||
Reference in New Issue
Block a user