From 477069c063d1f49f79de482270cbb548e2ec555f Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Mon, 8 Apr 2013 20:16:53 -0400 Subject: [PATCH] Fix compile bug in ptree.cpp with wxWidgets 2.9.x and MinGW. --- common/ptree.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/common/ptree.cpp b/common/ptree.cpp index bb1db39eb4..19cb21f94f 100644 --- a/common/ptree.cpp +++ b/common/ptree.cpp @@ -23,10 +23,13 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ +// Something in either causes a bunch of compiler +// errors in version 2.9 on MinGW. +#include + #include #include -#include #include typedef PTREE::const_iterator CITER;