From 362774c6176596f87506e3d330dd1d12b0b75e19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Sun, 26 Apr 2020 22:27:04 +0200 Subject: [PATCH] Windows: Appease capricious MSVC versions with moody headers Fixes #37799. Fixes #37986. (cherry picked from commit 4d3a18d9ff7db4570fedcc2f89354c41c31b9513) --- platform/windows/crash_handler_win.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/platform/windows/crash_handler_win.cpp b/platform/windows/crash_handler_win.cpp index 9825415c27..619b91f21d 100644 --- a/platform/windows/crash_handler_win.cpp +++ b/platform/windows/crash_handler_win.cpp @@ -36,9 +36,11 @@ // Backtrace code code based on: https://stackoverflow.com/questions/6205981/windows-c-stack-trace-from-a-running-app -#include #include #include +#include + +#include #pragma comment(lib, "psapi.lib") #pragma comment(lib, "dbghelp.lib")