|
Boost-Commit : |
From: technews_at_[hidden]
Date: 2007-12-30 03:37:14
Author: turkanis
Date: 2007-12-30 03:37:13 EST (Sun, 30 Dec 2007)
New Revision: 42365
URL: http://svn.boost.org/trac/boost/changeset/42365
Log:
fixed VC7.1 bug; addresses ticket #525
Text files modified:
branches/iostreams_dev/boost/iostreams/detail/adapter/direct_adapter.hpp | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
Modified: branches/iostreams_dev/boost/iostreams/detail/adapter/direct_adapter.hpp
==============================================================================
--- branches/iostreams_dev/boost/iostreams/detail/adapter/direct_adapter.hpp (original)
+++ branches/iostreams_dev/boost/iostreams/detail/adapter/direct_adapter.hpp 2007-12-30 03:37:13 EST (Sun, 30 Dec 2007)
@@ -42,9 +42,10 @@
template<typename Direct>
class direct_adapter_base {
public:
- typedef typename char_type_of<Direct>::type char_type;
+ typedef typename char_type_of<Direct>::type char_type;
+ typedef typename mode_of<Direct>::type mode_type;
struct category
- : mode_of<Direct>::type,
+ : mode_type,
device_tag,
closable_tag
#ifndef BOOST_IOSTREAMS_NO_LOCALE
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk