added from_type and to_type typedefs to default_codecvt, for Old Dinkumware

[SVN r27114]
This commit is contained in:
Jonathan Turkanis
2005-02-04 21:20:48 +00:00
parent 21ea046c4e
commit e41cfee111

View File

@@ -21,8 +21,8 @@
namespace boost { namespace iostreams { namespace detail {
struct default_codecvt {
typedef wchar_t intern_type;
typedef char extern_type;
typedef wchar_t intern_type, from_type;
typedef char extern_type, to_type;
typedef std::mbstate_t state_type;
};