mirror of
https://github.com/boostorg/boost.git
synced 2025-04-14 17:03:38 +00:00
remove warning "comparison between signed and unsigned"
[SVN r18976]
This commit is contained in:
parent
635a0df838
commit
d2d9865e07
1 changed files with 1 additions and 1 deletions
|
@ -410,7 +410,7 @@ int cpp_main( int argc, char ** argv )
|
|||
info.always_show_run_output
|
||||
= line.find( "\"always_show_run_output\"" ) != string::npos;
|
||||
info.type = line.substr( 11, line.find( ')' )-11 );
|
||||
for (int i = 0; i!=info.type.size(); ++i )
|
||||
for (unsigned int i = 0; i!=info.type.size(); ++i )
|
||||
{ info.type[i] = std::tolower( info.type[i] ); }
|
||||
pos = line.find( ':' );
|
||||
info.file_path = line.substr( pos+3,
|
||||
|
|
Loading…
Add table
Reference in a new issue