From c243cd7abe5c8c427b6344b8743ea8f5a310f0c6 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Thu, 28 Jan 2021 11:18:56 +0100 Subject: [PATCH] :rotating_light: fix warnings --- test/src/unit-udt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) {} };