$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Thorsten Ottosen (nesotto_at_[hidden])
Date: 2005-09-09 09:47:53
Markus Schöpflin <markus.schoepflin <at> comsoft.de> writes:
>
> What happened to the iostreams library? It worked fine for those compilers
> in 1.33.0 as can be seen on http://tinyurl.com/76dqz, but now most tests
> fail with the following error message:
> /house/schoepf/boost/regression/boost/boost/iostreams/chain.hpp, line 436: #29
> expected an expression
> { return chain_->component<N, T>(); }
> -------------------------------------^
> cxx: Info: 4 errors detected in the compilation of
> "/house/schoepf/boost/regression/boost/libs/iostreams/test/auto_close_test.cpp
".
>
> Does this ring a bell with anyone?
Seems to me that it should be
return chain-> template component<....>();
preferable with BOOST_NESTED_TEMPLATE instead of "template".
br
Thorsten