From e41cfee111d366eb7d7292f5bd873143f892f25b Mon Sep 17 00:00:00 2001 From: Jonathan Turkanis Date: Fri, 4 Feb 2005 21:20:48 +0000 Subject: [PATCH] added from_type and to_type typedefs to default_codecvt, for Old Dinkumware [SVN r27114] --- include/boost/iostreams/detail/codecvt_holder.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/iostreams/detail/codecvt_holder.hpp b/include/boost/iostreams/detail/codecvt_holder.hpp index e51f5a7..43f9b22 100755 --- a/include/boost/iostreams/detail/codecvt_holder.hpp +++ b/include/boost/iostreams/detail/codecvt_holder.hpp @@ -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; };