From 388186f7e1f83c8c0439fd057c4073d820dc2d80 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 2 Jun 2005 02:38:07 +0000 Subject: [PATCH] Compile fix for when wxUSE_STACKWALKER == 0 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34502 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/appbase.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/appbase.cpp b/src/common/appbase.cpp index afea12306a..f06ec4facd 100644 --- a/src/common/appbase.cpp +++ b/src/common/appbase.cpp @@ -710,6 +710,7 @@ bool DoShowAssertDialog(const wxString& msg) return false; } +#if wxUSE_STACKWALKER static wxString GetAssertStackTrace() { wxString stackTrace; @@ -775,6 +776,7 @@ static wxString GetAssertStackTrace() return stackTrace; } +#endif // wxUSE_STACKWALKER // show the assert modal dialog static -- 2.45.2