From bedba0d176b5d218ee592c3051d69eda5c41dbba Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 8 Nov 2011 11:01:58 +0000 Subject: [PATCH] Add missing stdio.h include to wxGTK assert dialog code. As we use FILE for saving the assert message to a file, we must include (which is not included from any other header, at least not under Solaris). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69696 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk/assertdlg_gtk.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gtk/assertdlg_gtk.cpp b/src/gtk/assertdlg_gtk.cpp index 0deb8617ef..e80caffbdb 100644 --- a/src/gtk/assertdlg_gtk.cpp +++ b/src/gtk/assertdlg_gtk.cpp @@ -12,6 +12,8 @@ #include "wx/gtk/assertdlg_gtk.h" #include "wx/gtk/private/gtk2-compat.h" +#include + /* ---------------------------------------------------------------------------- Constants ---------------------------------------------------------------------------- */ -- 2.47.2