mirror of
https://github.com/rbock/sqlpp11.git
synced 2025-12-31 02:00:24 -06:00
Fixed a bunch of missing initializations
This commit is contained in:
@@ -45,10 +45,10 @@ int64_t getColumn(Db&& db, const Column& column)
|
||||
int Select(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{};
|
||||
const auto tab_a = f.as(sqlpp::alias::a);
|
||||
|
||||
getColumn(db, t.alpha);
|
||||
|
||||
Reference in New Issue
Block a user