diff --git a/utils/HelpGen/src/HelpGen.cpp b/utils/HelpGen/src/HelpGen.cpp index 4bf5e4418f..db42f5db87 100644 --- a/utils/HelpGen/src/HelpGen.cpp +++ b/utils/HelpGen/src/HelpGen.cpp @@ -1296,7 +1296,7 @@ void HelpGenVisitor::VisitOperation( spOperation& op ) // check for the special case of dtor wxString dtor; - if ( (funcname[0] == '~') && (m_classname == funcname.c_str() + 1) ) { + if ( (funcname[0u] == '~') && (m_classname == funcname.c_str() + 1) ) { dtor.Printf("\\destruct{%s}", m_classname.c_str()); funcname = dtor; } @@ -2203,6 +2203,9 @@ static const wxString GetVersionString() /* $Log$ + Revision 1.22.2.1 2004/05/29 20:23:33 DS + blind compilation fix for first warning and error reported by "i686-pc-linux-gnu+RH" tinderbox compilation + Revision 1.22 2002/01/21 21:18:50 JS Now adds 'include file' heading diff --git a/utils/HelpGen/src/srcparser.h b/utils/HelpGen/src/srcparser.h index 9eb017aafb..266ce65526 100644 --- a/utils/HelpGen/src/srcparser.h +++ b/utils/HelpGen/src/srcparser.h @@ -142,7 +142,7 @@ class spComment; typedef WXSTL_VECTOR_SHALLOW_COPY(spParameterPtrT) MParamListT; typedef WXSTL_VECTOR_SHALLOW_COPY(string) StrListT; -#endif; +#endif // base class for all visitors of source code contents class spVisitor