Compilation and warning fixes for GCC 3.2.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24263 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -904,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;
|
||||
|
Reference in New Issue
Block a user