From a7f8eb6d0fe67f96eb6b7e3a88ba27d80756162b Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 20 Mar 2007 21:05:09 +0000 Subject: [PATCH] removed extraneous semicolons git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44990 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/log.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/wx/log.h b/include/wx/log.h index 4561205cbe..7f97d905e0 100644 --- a/include/wx/log.h +++ b/include/wx/log.h @@ -562,7 +562,7 @@ DECLARE_LOG_FUNCTION_IMPL(Status); DECLARE_LOG_FUNCTION2_EXP_IMPL(Status, wxFrame *, pFrame, WXDLLIMPEXP_CORE); #endif // wxUSE_GUI -DECLARE_LOG_FUNCTION_PUBLIC(Status); +DECLARE_LOG_FUNCTION_PUBLIC(Status) // additional one: as wxLogError, but also logs last system call error code // and the corresponding error message if available @@ -572,7 +572,7 @@ DECLARE_LOG_FUNCTION_IMPL(SysError); // that don't set the errno (like registry APIs in Win32)) DECLARE_LOG_FUNCTION2_IMPL(SysError, long, lErrCode); -DECLARE_LOG_FUNCTION_PUBLIC(SysError); +DECLARE_LOG_FUNCTION_PUBLIC(SysError) // debug functions do nothing in release mode #if wxUSE_LOG && wxUSE_LOG_DEBUG @@ -589,7 +589,7 @@ DECLARE_LOG_FUNCTION_PUBLIC(SysError); // wxLog::GetActive()->GetTraceMask() -- it's deprecated in favour of // string identifiers DECLARE_LOG_FUNCTION2_IMPL(Trace, wxTraceMask, mask); - DECLARE_LOG_FUNCTION_PUBLIC(Trace); + DECLARE_LOG_FUNCTION_PUBLIC(Trace) #else //!debug || !wxUSE_LOG // these functions do nothing in release builds, but don't define them as // nothing as it could result in different code structure in debug and -- 2.47.2