mirror of
https://github.com/boostorg/build.git
synced 2026-02-13 12:22:17 +00:00
Boost Jam update to remove a 'pointer to integer of different size' warning displayed when building using the mingw64 toolset.
[SVN r80251]
This commit is contained in:
@@ -227,7 +227,7 @@ STACK * stack_global()
|
||||
|
||||
static void check_alignment( STACK * s )
|
||||
{
|
||||
assert( (unsigned long)s->data % sizeof( LIST * ) == 0 );
|
||||
assert( (size_t)s->data % sizeof( LIST * ) == 0 );
|
||||
}
|
||||
|
||||
void * stack_allocate( STACK * s, int size )
|
||||
|
||||
Reference in New Issue
Block a user