In boost/mpl/assert.hpp, I saw something like this:
template<class Pred>
struct eval_assert {
typedef typename extract_assert_pred<Pred>::type P;
typedef typename P::type p_type;
typedef typename ::boost::mpl::if_c<p_type::value,
AUX778076_ASSERT_ARG(assert<false>),
failed ************ P::************
>::type type;
};
If the first ************
can be treated as pointers of struct failed, the P::************
really doesn't make any sense to me. Is this standard C++?