$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r80251 - trunk/tools/build/v2/engine
From: jurko.gospodnetic_at_[hidden]
Date: 2012-08-27 06:07:55
Author: jurko
Date: 2012-08-27 06:07:54 EDT (Mon, 27 Aug 2012)
New Revision: 80251
URL: http://svn.boost.org/trac/boost/changeset/80251
Log:
Boost Jam update to remove a 'pointer to integer of different size' warning displayed when building using the mingw64 toolset.
Text files modified:
trunk/tools/build/v2/engine/function.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/tools/build/v2/engine/function.c
==============================================================================
--- trunk/tools/build/v2/engine/function.c (original)
+++ trunk/tools/build/v2/engine/function.c 2012-08-27 06:07:54 EDT (Mon, 27 Aug 2012)
@@ -227,7 +227,7 @@
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 )