16 Oct
2008
16 Oct
'08
10:02 p.m.
AMDG Missing Rainbow wrote:
I am making use of boost 1.32.0 (as given in the MPL book CD). I have written a small program using mpl::vector. I am getting the following error. What could be the problem?
"hello.c", line 4: Error: mpl is not defined.
#include "boost/mpl/vector.hpp"
typedef mpl::vector
seq;
Try namespace mpl = boost::mpl; or boost::mpl::vector<...> In Christ, Steven Watanabe