mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-02-14 01:00:27 -05:00
Fix various warnings
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user