mirror of
https://github.com/boostorg/build.git
synced 2026-02-20 02:32:13 +00:00
Avoid MSVC secure, and one more un/signed warning.
This commit is contained in:
@@ -191,8 +191,8 @@ void string_unit_test()
|
||||
{
|
||||
{
|
||||
string s[ 1 ];
|
||||
unsigned int i;
|
||||
int const limit = sizeof( s->opt ) * 2 + 2;
|
||||
unsigned long i;
|
||||
unsigned long const limit = sizeof( s->opt ) * 2 + 2;
|
||||
string_new( s );
|
||||
assert( s->value == s->opt );
|
||||
for ( i = 0; i < limit; ++i )
|
||||
|
||||
Reference in New Issue
Block a user