From 8979566dd263d9f90ad71ffb1257bfe81578ba61 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 13 Mar 2016 02:03:48 +0100 Subject: [PATCH] Make wx/stackwalk.h self-sufficient Don't rely on wx/string.h being already included, but include it explicitly ourselves to fix compilation error when wx/stackwalk.h is the first wx header to be included. --- include/wx/stackwalk.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/wx/stackwalk.h b/include/wx/stackwalk.h index 1133d6ef7c..c0ba151d75 100644 --- a/include/wx/stackwalk.h +++ b/include/wx/stackwalk.h @@ -15,6 +15,8 @@ #if wxUSE_STACKWALKER +#include "wx/string.h" + class WXDLLIMPEXP_FWD_BASE wxStackFrame; #define wxSTACKWALKER_MAX_DEPTH (200)