From 0a890608f192fa31ed6e229426e80a0a57506705 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 28 Dec 2012 16:01:59 +0000 Subject: [PATCH] Remove extra "#" operator in wxFAIL_COND_MSG macro. The argument of this macro is already a string, so we don't need to stringify it again. This fixes VC6 build, unlike all the other compilers this one didn't apply "#" to an argument which was already a quoted string correctly. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73286 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/debug.h b/include/wx/debug.h index ab68145fcf..35c7ca1222 100644 --- a/include/wx/debug.h +++ b/include/wx/debug.h @@ -297,7 +297,7 @@ extern WXDLLIMPEXP_BASE void wxOnAssert(const char *file, wxSTATEMENT_MACRO_BEGIN \ if ( wxTheAssertHandler && \ (wxOnAssert(__FILE__, __LINE__, __WXFUNCTION__, \ - #cond, msg), wxTrapInAssert) ) \ + cond, msg), wxTrapInAssert) ) \ { \ wxTrapInAssert = false; \ wxTrap(); \ -- 2.50.0