Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #10467 from Dentomologist/fix_scalar_initializer_b…
…races_warning

Debugger: Fix warning on Debian builder
  • Loading branch information
leoetlino committed Mar 2, 2022
2 parents c7361bc + d20f3c9 commit d32c720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/Debugger/PPCDebugInterface.cpp
Expand Up @@ -182,7 +182,7 @@ Common::Debug::Threads PPCDebugInterface::GetThreads() const
if (!active_thread->IsValid())
return threads;

std::vector<u32> visited_addrs{{active_thread->GetAddress()}};
std::vector<u32> visited_addrs{active_thread->GetAddress()};
const auto insert_threads = [&threads, &visited_addrs](u32 addr, auto get_next_addr) {
while (addr != 0 && PowerPC::HostIsRAMAddress(addr))
{
Expand Down

0 comments on commit d32c720

Please sign in to comment.