From 06882bd2dca4ea92d0608077c45cff6cb7e41583 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joshua=20Vanda=C3=ABle?= Date: Mon, 9 Jun 2025 15:30:26 +0200 Subject: Fix various warnings --- Source/UnitTests/Common/StringUtilTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/UnitTests/Common/StringUtilTest.cpp') diff --git a/Source/UnitTests/Common/StringUtilTest.cpp b/Source/UnitTests/Common/StringUtilTest.cpp index 5c21610a13..2be462a1b5 100644 --- a/Source/UnitTests/Common/StringUtilTest.cpp +++ b/Source/UnitTests/Common/StringUtilTest.cpp @@ -57,7 +57,7 @@ static void DoRoundTripTest(const std::vector& data) for (const T& e : data) { const std::string s = ValueToString(e); - T out; + T out = T(); EXPECT_TRUE(TryParse(s, &out)); EXPECT_EQ(e, out); } -- cgit v1.2.3