fixed postgres tests
This commit is contained in:
@@ -16,7 +16,7 @@ struct ingredient
|
||||
{
|
||||
unsigned int id{};
|
||||
std::string name;
|
||||
std::vector<object::object_ptr<recipe>> recipes;
|
||||
std::vector<object::object_ptr<recipe>> recipes{};
|
||||
|
||||
template<class Operator>
|
||||
void process(Operator &op) {
|
||||
@@ -31,7 +31,7 @@ struct recipe
|
||||
{
|
||||
unsigned int id{};
|
||||
std::string name;
|
||||
std::vector<object::object_ptr<ingredient>> ingredients;
|
||||
std::vector<object::object_ptr<ingredient>> ingredients{};
|
||||
|
||||
template<class Operator>
|
||||
void process(Operator &op) {
|
||||
|
||||
Reference in New Issue
Block a user