1

对于 Boost Proto 表达式,我什么时候不应该期待一个proto_tag成员?我可以使用以下任一方法查询占位符的标签类型:

typedef proto::tag_of<decltype(_1)>::type ta;
typedef decltype(_1)::proto_tag           tb;

但是,如果我询问表达式child的标签类型,则该proto_tag成员似乎不存在;以下代码的第三行给出了错误:

auto f = _1 + _2;
typedef proto::tag_of<decltype(proto::child_c<0>(f))>::type tc;
typedef decltype(proto::child_c<0>(f))::proto_tag           td; // error

Clang 和 GCC 的错误报告有问题的类型:is not a class, namespace, or scoped enumeration。我使用 Clang 3.2、GCC 4.7.2 和 Boost 1.53。

4

1 回答 1

3

g++ 4.8.0给出的错误基本上是:

decltype 计算结果为phx::actor<proto::expression>&,它不是类或枚举类型

为了使用::你需要有一个不合格的类型,所以你必须删除引用:

#include <type_traits>
typedef std::remove_reference<decltype(proto::child_c<0>(f))>::type::proto_tag td;

我相信你也可以使用:

typedef proto::result_of::child_c<decltype(f),0>::type::proto_tag td;

使用proto::tag_of您无需担心可能的引用,因为它会在必要时被删除:

template<typename Expr>
struct tag_of
{
    typedef typename Expr::proto_tag type;
};

template<typename Expr>
struct tag_of<Expr &>
{
    typedef typename Expr::proto_tag type;
};
于 2013-05-18T07:07:08.837 回答