Fix various warnings

This commit is contained in:
Joshua Vandaële 2025-06-09 15:30:26 +02:00
commit 06882bd2dc
No known key found for this signature in database
GPG key ID: 5E8F4E7EDBD390EA
13 changed files with 40 additions and 32 deletions

View file

@ -57,7 +57,7 @@ static void DoRoundTripTest(const std::vector<T>& 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);
}