From c263ce8cc6e4166a15ccea0059e324468a1f7230 Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Mon, 25 Nov 2024 17:23:35 +0100 Subject: [PATCH] Crashpad: Fix missing include Amends 58af141dfc0915b1281c23f2dcf4e004273f0e61 Change-Id: Ibb9e1b37246633282c7f8c74bfc93fb7f1a31263 Reviewed-by: Tim Jenssen --- src/app/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/main.cpp b/src/app/main.cpp index 73b6a003514..1767cbade16 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -48,8 +48,9 @@ #ifdef ENABLE_CRASHPAD #define NOMINMAX -#include "client/crashpad_client.h" #include "client/crash_report_database.h" +#include "client/crashpad_client.h" +#include "client/crashpad_info.h" #include "client/settings.h" #endif