mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-08 17:19:15 +00:00
Fix various warnings
This commit is contained in:
parent
f76ab86326
commit
06882bd2dc
13 changed files with 40 additions and 32 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue