🚨 fix warnings
This commit is contained in:
parent
10fc3520d7
commit
c243cd7abe
@ -86,7 +86,7 @@ struct contact
|
|||||||
struct contact_book
|
struct contact_book
|
||||||
{
|
{
|
||||||
name m_book_name{};
|
name m_book_name{};
|
||||||
std::vector<contact> m_contacts;
|
std::vector<contact> m_contacts{};
|
||||||
contact_book() = default;
|
contact_book() = default;
|
||||||
contact_book(name n, std::vector<contact> c) : m_book_name(std::move(n)), m_contacts(std::move(c)) {}
|
contact_book(name n, std::vector<contact> c) : m_book_name(std::move(n)), m_contacts(std::move(c)) {}
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user