From 6983e9233d50b4967e6847b243a69b55cb97e08a Mon Sep 17 00:00:00 2001 From: Amber Brault Date: Sat, 7 Dec 2024 22:40:08 -0500 Subject: [PATCH] Fix some include errors --- Source/Core/Core/PowerPC/CWDemangler.cpp | 2 +- Source/Core/Core/PowerPC/CWDemangler.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/CWDemangler.cpp b/Source/Core/Core/PowerPC/CWDemangler.cpp index f2c25c1d32..1c1180e69d 100644 --- a/Source/Core/Core/PowerPC/CWDemangler.cpp +++ b/Source/Core/Core/PowerPC/CWDemangler.cpp @@ -6,7 +6,7 @@ #include -#include "common/StringUtil.h" +#include "Common/StringUtil.h" static const std::map operators = { {"nw", "operator new"}, {"nwa", "operator new[]"}, diff --git a/Source/Core/Core/PowerPC/CWDemangler.h b/Source/Core/Core/PowerPC/CWDemangler.h index 093614e3bf..25a1d15adb 100644 --- a/Source/Core/Core/PowerPC/CWDemangler.h +++ b/Source/Core/Core/PowerPC/CWDemangler.h @@ -1,6 +1,7 @@ #pragma once #include +#include #include #include "Common/CommonTypes.h"