From bdf3a03c04bbeab77cdfd8c853de591651f6465b Mon Sep 17 00:00:00 2001 From: Shawn Hoffman Date: Thu, 28 Jul 2022 13:06:47 -0700 Subject: [PATCH] DolphinQt: fix BootSessionData dtor not being called std::unique_ptr can't/won't call deleter on incomplete type generated warning on vs 17.3.0 preview 5.0 --- Source/Core/DolphinQt/MainWindow.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/MainWindow.h b/Source/Core/DolphinQt/MainWindow.h index 6e53f2df10..5f9eb34bb2 100644 --- a/Source/Core/DolphinQt/MainWindow.h +++ b/Source/Core/DolphinQt/MainWindow.h @@ -11,11 +11,12 @@ #include #include +#include "Core/Boot/Boot.h" + class QStackedWidget; class QString; class BreakpointWidget; -class BootSessionData; struct BootParameters; class CheatsManager; class CodeWidget;