]> git.saurik.com Git - wxWidgets.git/commitdiff
Compilation fixes.
authorMattia Barbon <mbarbon@cpan.org>
Mon, 13 Oct 2003 17:21:30 +0000 (17:21 +0000)
committerMattia Barbon <mbarbon@cpan.org>
Mon, 13 Oct 2003 17:21:30 +0000 (17:21 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24165 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

utils/HelpGen/src/HelpGen.cpp
utils/HelpGen/src/srcparser.h
utils/HelpGen/src/wxstlac.h

index 9ceff9f0718a1964c62d3ce0b9378edc87b36271..3f8541a125f1295c8d6dfea6683190fc433c3643 100644 (file)
@@ -1278,7 +1278,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;
     }
@@ -2185,6 +2185,9 @@ static const wxString GetVersionString()
 
 /*
    $Log$
+   Revision 1.27  2003/10/13 17:21:30  MBN
+     Compilation fixes.
+
    Revision 1.26  2003/09/29 15:18:35  MBN
      (Blind) compilation fix for Sun compiler.
 
index e92a10be33024ef1054bc1d77fd9edea2c35f27c..fa1c268b1b1eefaf94f3a5f3673c0e229b5a5a1f 100644 (file)
@@ -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
index f71ef3405dd05511219cb23f2ffb76c59494c623..71b11773e7b156eea7e14c6ace087f03722cebe3 100644 (file)
@@ -22,7 +22,7 @@
 #endif
 #include <memory.h>
 #include <limits.h>
-#include <new.h>
+/* #include <new.h> */
 
 // the below macro used internally (see actual interface after this macro)