Hi Aleksey

I have got mpl out of CVS 5 minutes ago.
Code that previously compiled fine now shows the following error:

d:\Data\boostCvsRoot\boost\boost\mpl\aux_\include_preprocessed.hpp(27) :
fatal error C1083: Cannot open include file:
'boost/mpl/aux_/preprocessed/msvc70/placeholder.hpp': No such file or
directory

MPL can be fixed as follows:

diff -r1.5 placeholder.hpp
33c33
< #   define BOOST_MPL_PREPROCESSED_HEADER placeholder.hpp
---
> #   define BOOST_MPL_PREPROCESSED_HEADER placeholders.hpp


OR users can fix their code by replacing

#include <boost/mpl/placeholder.hpp>

with

#include <boost/mpl/placeholders.hpp>

and

mpl::placeholder;

with

mpl::placeholders;

Regards,

Andreas


_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

Reply via email to