summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2022-03-02 12:56:09 +0100
committerGitHub <noreply@github.com>2022-03-02 12:56:09 +0100
commitd32c72038ae8be1cb8b047ca3dae99ba7b3626d8 (patch)
tree7b73f51d610a9d005fcc914527089d249b6210fa /Source/Core
parentc7361bc1b3e9e79fa2303ede725ee113bc7269c9 (diff)
parentd20f3c9e64cb70251d9375cd1483b959d1248ac8 (diff)
Merge pull request #10467 from Dentomologist/fix_scalar_initializer_braces_warning
Debugger: Fix warning on Debian builder
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/Debugger/PPCDebugInterface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/Debugger/PPCDebugInterface.cpp b/Source/Core/Core/Debugger/PPCDebugInterface.cpp
index 2d6e83c7cc..42082a5cfb 100644
--- a/Source/Core/Core/Debugger/PPCDebugInterface.cpp
+++ b/Source/Core/Core/Debugger/PPCDebugInterface.cpp
@@ -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))
{