mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-01-01 02:30:51 -06:00
Fixed a bunch of missing initializations
This commit is contained in:
@@ -41,10 +41,12 @@ int select(int, char**)
|
||||
static constexpr bool some_condition = true;
|
||||
static constexpr bool some_other_condition = false;
|
||||
|
||||
MockDb db;
|
||||
MockDb db{};
|
||||
|
||||
test::TabPerson p;
|
||||
test::TabFeature f;
|
||||
const auto p = test::TabPerson{};
|
||||
#if 0
|
||||
const auto f = test::TabFeature{};
|
||||
#endif
|
||||
|
||||
for (const auto& row : db(select(all_of(p)).from(p).where(p.id > 7)))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user