diff --git a/test/src/unit-udt.cpp b/test/src/unit-udt.cpp index 2c2f6a0bc..6c810af76 100644 --- a/test/src/unit-udt.cpp +++ b/test/src/unit-udt.cpp @@ -86,7 +86,7 @@ struct contact struct contact_book { name m_book_name{}; - std::vector m_contacts; + std::vector m_contacts{}; contact_book() = default; contact_book(name n, std::vector c) : m_book_name(std::move(n)), m_contacts(std::move(c)) {} };