2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 13:22:11 +00:00

64/32 bit compile working by using int32 types as needed.

This commit is contained in:
René Ferdinand Rivera Morell
2020-09-09 09:46:08 -05:00
parent 210cef7ae2
commit 84666e77fa
40 changed files with 590 additions and 603 deletions

View File

@@ -12,7 +12,7 @@
void declare_native_rule( char const * module, char const * rule,
char const * * args, LIST * (*f)( FRAME *, int ), int version )
char const * * args, LIST * (*f)( FRAME *, int32_t ), int32_t version )
{
OBJECT * const module_obj = module ? object_new( module ) : 0 ;
module_t * m = bindmodule( module_obj );
@@ -23,7 +23,7 @@ void declare_native_rule( char const * module, char const * rule,
{
OBJECT * const name = object_new( rule );
int found;
int32_t found;
native_rule_t * const np = (native_rule_t *)hash_insert(
m->native_rules, name, &found );
np->name = name;