X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d12e353663f9a2fc28b26e6468716f6a01b85595..aa154cb1578ba9d44c7e24c5e76d8238bf8809d0:/utils/HelpGen/src/cjparser.cpp diff --git a/utils/HelpGen/src/cjparser.cpp b/utils/HelpGen/src/cjparser.cpp index a623a28611..fbec4d74dc 100644 --- a/utils/HelpGen/src/cjparser.cpp +++ b/utils/HelpGen/src/cjparser.cpp @@ -10,8 +10,7 @@ ///////////////////////////////////////////////////////////////////////////// #ifdef __GNUG__ -#pragma implementation "acell.h" -#pragma interface +# pragma implementation "acell.h" #endif // For compilers that support precompilation, includes "wx/wx.h". @@ -905,11 +904,11 @@ static void arrange_indirection_tokens_between( string& type, { // TBD:: FIXME:: return value of operators ! - while ( identifier[0] == '*' || - identifier[0] == '&' + while ( identifier[0u] == '*' || + identifier[0u] == '&' ) { - type += identifier[0]; + type += identifier[0u]; identifier.erase(0,1); if ( !identifier.length() ) return;