]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/markupparser.cpp
Fix uninitialized variable warning in wxMSW wxFileSystemWatcher code.
[wxWidgets.git] / src / common / markupparser.cpp
index cb87983b0e72f86b0d0f1bdfee96fc27da963b7b..c0580e242fe770185d0abb4e3480cc4a4e37a12f 100644 (file)
@@ -279,7 +279,12 @@ bool wxMarkupParser::Parse(const wxString& text)
                         m_output.OnText(current);
                         current.clear();
                     }
                         m_output.OnText(current);
                         current.clear();
                     }
-#if wxUSE_LOG_DEBUG
+
+                    // This variable is used only in the debugging messages
+                    // and doesn't need to be defined if they're not compiled
+                    // at all (it actually would result in unused variable
+                    // messages in this case).
+#if wxUSE_LOG_DEBUG || !defined(HAVE_VARIADIC_MACROS)
                     // Remember the tag starting position for the error
                     // messages.
                     const size_t pos = it - text.begin();
                     // Remember the tag starting position for the error
                     // messages.
                     const size_t pos = it - text.begin();