1

我有以下无法编译的代码:

#include <iostream>
#include "boost/mpl/set.hpp"
#include "boost/mpl/at.hpp"
#include "boost/type_traits/is_same.hpp"

struct TypeSet {

    typedef boost::mpl::set<int, float> typeset;

    template<typename T>
    static bool hasType()
    {
        using namespace boost;
        using namespace boost::mpl;
        return is_same< at< typeset, T >::type, T >::value; // <-- ERROR IS HERE
    }  
};


int main(int argc, const char * argv[])
{
    bool hasInt = TypeSet::hasType<int>();
    std::cout << (hasInt ? "set contains int" : "set does not contain int") << std::endl;    
    return 0;
}

代码正在使用 Apple LLVM clang 4.1 编译器和 boost 1.5.2 编译,错误是“类型参数的模板参数必须是类型” - 基本上编译器抱怨boost::mpl::at没有返回类型。有问题的代码几乎是从 boost 文档中逐字提取的,所以我不知道这有什么问题(据我所知boost::mpl::at,它确实返回了一个类型)。

4

1 回答 1

5

你需要

typename at< typeset, T >::type

因为它取决于模板参数T。所以你必须告诉编译器type在这种情况下这是一个类型。

于 2012-11-17T13:25:22.993 回答