Boost logo

Boost Users :

From: Sancho McCann (sanchom_at_[hidden])
Date: 2008-04-29 14:15:44


Anyone else agree this is a problem?

I was trying to compile this simple program:

#include <boost/numeric/ublas/vector_sparse.hpp>
#include <boost/numeric/ublas/io.hpp>
#include <iostream>

int main(int argc, char** argv)
{
  using namespace boost::numeric::ublas;
  mapped_vector<double> v(3,3);
  for ( unsigned i = 0; i < v.size(); ++i )
      v(i) = i;

  std::cout << v << std::endl;

  return 0;
}

and the include hierarchy ends up including serialization/utility.hpp. This
file uses the template mpl::and_, so I think it should include
xpressive/xpressive.hpp.

Sancho



Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net