From 5c83edb7b2ab84afa4e423e889c278f6df363230 Mon Sep 17 00:00:00 2001 From: Ziemas Date: Wed, 11 Sep 2024 03:31:03 +0200 Subject: [PATCH] ExpressionParser: Add missing include in header --- pcsx2/DebugTools/ExpressionParser.h | 1 + 1 file changed, 1 insertion(+) diff --git a/pcsx2/DebugTools/ExpressionParser.h b/pcsx2/DebugTools/ExpressionParser.h index 26bfa828e4..a7f637149c 100644 --- a/pcsx2/DebugTools/ExpressionParser.h +++ b/pcsx2/DebugTools/ExpressionParser.h @@ -4,6 +4,7 @@ #pragma once #include "common/Pcsx2Types.h" +#include #include typedef std::pair ExpressionPair;