
28 Oct
2007
28 Oct
'07
3:07 p.m.
On 10/28/07, shunsuke <pstade.mb@gmail.com> wrote:
Hi,
range/concepts.hpp is utterly broken. You can't even include it. Anyone plans to fix it? or may I make a patch?
Could you be more specific? Which version of boost, compiler, etc. For example, I just tried the following with svn trunk, and it compiled without errors. $ cat test.cpp #include <boost/concept_check.hpp> #include <boost/range/concepts.hpp> #include <boost/range.hpp> using namespace boost; main() { function_requires<ForwardRangeConcept<iterator_range<int*> > >(); } $ g++ -dumpversion 4.1.2 $ g++ -Itrunk test.cpp Thanks, Daniel Walker