$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: technews_at_[hidden]
Date: 2007-12-23 18:32:46
Author: turkanis
Date: 2007-12-23 18:32:46 EST (Sun, 23 Dec 2007)
New Revision: 42265
URL: http://svn.boost.org/trac/boost/changeset/42265
Log:
Updated to support C++Builder 2007 Update 3 (bcc32 5.9.2) (proted from  sandbox-branches/birbacher/fix_iostreams)
Text files modified: 
   branches/iostreams_dev/boost/iostreams/detail/enable_if_stream.hpp |     5 +++--                                   
   1 files changed, 3 insertions(+), 2 deletions(-)
Modified: branches/iostreams_dev/boost/iostreams/detail/enable_if_stream.hpp
==============================================================================
--- branches/iostreams_dev/boost/iostreams/detail/enable_if_stream.hpp	(original)
+++ branches/iostreams_dev/boost/iostreams/detail/enable_if_stream.hpp	2007-12-23 18:32:46 EST (Sun, 23 Dec 2007)
@@ -15,9 +15,10 @@
 #include <boost/utility/enable_if.hpp>                  
 #include <boost/iostreams/traits_fwd.hpp>  // is_std_io.
 
-#if ! defined(BOOST_NO_SFINAE) && ! BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x592))
+#if !defined(BOOST_NO_SFINAE) && \
+    !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x592))
 # define BOOST_IOSTREAMS_ENABLE_IF_STREAM(T) \
-    , typename boost::enable_if< boost::iostreams::is_std_io<T> >::type* = 0  \
+    , typename boost::enable_if< boost::iostreams::is_std_io<T> >::type* = 0 \
     /**/
 # define BOOST_IOSTREAMS_DISABLE_IF_STREAM(T) \
     , typename boost::disable_if< boost::iostreams::is_std_io<T> >::type* = 0 \