msvcrt: Use unsigned int instead of size_t to avoid printf format warnings.
This commit is contained in:
parent
dbd473ff79
commit
db78a84d47
|
@ -106,7 +106,7 @@ typedef struct __cxx_type_info
|
||||||
UINT flags; /* flags (see CLASS_* flags below) */
|
UINT flags; /* flags (see CLASS_* flags below) */
|
||||||
const type_info *type_info; /* C++ type info */
|
const type_info *type_info; /* C++ type info */
|
||||||
this_ptr_offsets offsets; /* offsets for computing the this pointer */
|
this_ptr_offsets offsets; /* offsets for computing the this pointer */
|
||||||
size_t size; /* object size */
|
unsigned int size; /* object size */
|
||||||
cxx_copy_ctor copy_ctor; /* copy constructor */
|
cxx_copy_ctor copy_ctor; /* copy constructor */
|
||||||
} cxx_type_info;
|
} cxx_type_info;
|
||||||
#define CLASS_IS_SIMPLE_TYPE 1
|
#define CLASS_IS_SIMPLE_TYPE 1
|
||||||
|
|
Loading…
Reference in New Issue