Skip to content
Snippets Groups Projects
Commit c20fd880 authored by Daniel Lehman's avatar Daniel Lehman Committed by Alexandre Julliard
Browse files

msvcp90: Make type_info::mangled larger.

parent 568c3215
No related branches found
No related tags found
No related merge requests found
......@@ -172,8 +172,8 @@ void set_exception_vtable(void);
typedef struct __type_info
{
const vtable_ptr *vtable;
char *name; /* Unmangled name, allocated lazily */
char mangled[64]; /* Variable length, but we declare it large enough for static RTTI */
char *name; /* Unmangled name, allocated lazily */
char mangled[128]; /* Variable length, but we declare it large enough for static RTTI */
} type_info;
/* offsets for computing the this pointer */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment