2
0
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:
Jurko Gospodnetić
2012-08-27 10:07:54 +00:00
parent 6999e2eb1a
commit 2ba303d950

View File

@@ -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 )