Commit db78a84d authored by Alexandre Julliard's avatar Alexandre Julliard

msvcrt: Use unsigned int instead of size_t to avoid printf format warnings.

parent dbd473ff
...@@ -106,7 +106,7 @@ typedef struct __cxx_type_info ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment