msvcp70: Fix ios_base definition.

This commit is contained in:
Piotr Caban 2014-12-25 16:50:27 +01:00 committed by Alexandre Julliard
parent 799c771587
commit be6e7727d2
1 changed files with 4 additions and 1 deletions

View File

@ -352,7 +352,7 @@ typedef struct _ios_base {
const vtable_ptr *vtable;
#if _MSVCP_VER >= 100
MSVCP_size_t DECLSPEC_ALIGN(8) stdstr;
#else
#elif _MSVCP_VER >= 71
MSVCP_size_t stdstr;
#endif
IOSB_iostate state;
@ -363,6 +363,9 @@ typedef struct _ios_base {
IOS_BASE_iosarray *arr;
IOS_BASE_fnarray *calls;
locale *loc;
#if _MSVCP_VER == 70
MSVCP_size_t stdstr;
#endif
} ios_base;
/* class basic_streambuf<char> */