0

我正在尝试使用 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

任何线索我做错了什么?

谢谢!

4

1 回答 1

0

我能够使用 is_const 修复它:

typedef typename boost::mpl::if_<boost::is_const<T>, const sexpr *, sexpr *>::type pointer;

谢谢!

于 2012-09-06T02:51:25.970 回答