我正在尝试使用 boost::mpl 根据某些模板参数类型的常量来控制某些指针类型的常量。这是我的尝试:
template<typename T>
struct iter {
typedef typename boost::mpl::if_<boost::is_same<T, const list>, const sexpr *, sexpr *>::type pointer;
};
然而,编译器拒绝了这种说法:
sexpr.h:154: error: ISO C++ forbids declaration of `type name' with no type
sexpr.h:154: error: template argument 2 is invalid
sexpr.h:154: error: template argument 1 is invalid
sexpr.h:154: error: `type' does not name a type
任何线索我做错了什么?
谢谢!