I recently compiled an old project using Xcode 4.6.2 under OS 10.7.5. --> Everything OK.
#include "boost/math/special_functions.hpp"
and I updated my Boost installation to 1_50_0 from 1_44_0. After the update, and after changing "search header paths" accordingly, I got 20 Clang errors, internal to Boost, starting in cons_fwd.hpp. See arrows below:
#if !defined(BOOST_FUSION_CONS_FWD_HPP_INCLUDED)
#define BOOST_FUSION_CONS_FWD_HPP_INCLUDED
namespace boost { namespace fusion
{
struct nil; <-- Declaration of anonymous struct must be a definition
template <typename Car, typename Cdr = nil> <-- Expected a type
struct cons;
}}
#endif
Xcode is behaving as though Boost itself were broken (which seems unlikely). Also, no variations on language or dialect seem to matter.
Any thoughts? Workarounds?
Thanks.
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden