我有以下无法编译的代码:
#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
,它确实返回了一个类型)。