X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/83250f1a2b8c16bd69f0cdea7cf8ffe658d66b6d..e4277538a535d6d6c049f0b0ead9ed2b07cd93f2:/include/wx/log.h diff --git a/include/wx/log.h b/include/wx/log.h index 13230917c6..29c3464b30 100644 --- a/include/wx/log.h +++ b/include/wx/log.h @@ -12,10 +12,6 @@ #ifndef _WX_LOG_H_ #define _WX_LOG_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "log.h" -#endif - #include "wx/defs.h" // ---------------------------------------------------------------------------- @@ -311,6 +307,7 @@ private: DECLARE_NO_COPY_CLASS(wxLogBuffer) }; + // log everything to a "FILE *", stderr by default class WXDLLIMPEXP_BASE wxLogStderr : public wxLog { @@ -557,12 +554,15 @@ DECLARE_LOG_FUNCTION2(SysError, long, lErrCode); DECLARE_LOG_FUNCTION2(Trace, wxTraceMask, mask); #else //!debug // these functions do nothing in release builds + + // note that leaving out "fmt" in the vararg functions provokes a warning + // from SGI CC: "the last argument of the varargs function is unnamed" inline void wxVLogDebug(const wxChar *, va_list) { } - inline void wxLogDebug(const wxChar *, ...) { } + inline void wxLogDebug(const wxChar *fmt, ...) { wxUnusedVar(fmt); } inline void wxVLogTrace(wxTraceMask, const wxChar *, va_list) { } - inline void wxLogTrace(wxTraceMask, const wxChar *, ...) { } + inline void wxLogTrace(wxTraceMask, const wxChar *fmt, ...) { wxUnusedVar(fmt); } inline void wxVLogTrace(const wxChar *, const wxChar *, va_list) { } - inline void wxLogTrace(const wxChar *, const wxChar *, ...) { } + inline void wxLogTrace(const wxChar *, const wxChar *fmt, ...) { wxUnusedVar(fmt); } #endif // debug/!debug // wxLogFatalError helper: show the (fatal) error to the user in a safe way,