From 4799a775b1df3f4e6b2a74c014b983944ce6911c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20B=C3=B6hmer?= Date: Wed, 18 Nov 2020 23:42:29 +0100 Subject: [PATCH] fix GCC warning -Wmissing-field-initializers --- include/boost/ut.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/ut.hpp b/include/boost/ut.hpp index a0cd37ba..931883aa 100644 --- a/include/boost/ut.hpp +++ b/include/boost/ut.hpp @@ -1654,7 +1654,7 @@ constexpr auto operator""_b(const char* name, decltype(sizeof("")) size) { return other; } }; - return named{{name, size}}; + return named{{name, size}, {}}; } } // namespace literals