
Thorsten Ottosen wrote:
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".
Yeah, that's it.
br
Thorsten
Jonathan