我有如下功能:
template<typename T>
void myF(void* a, T* b, T c)
{
make_unsigned<T>::type newC;
make_unsigned<T>::type* newB = ptr_cast<make_unsigned<T>::type*>(b);
...
}
template <typename T> T ptr_cast(void* ptr)
{
return static_cast<T>(ptr);
}
这是使用 type_traits 类。它在 VS 2010 中工作得很好,但是当我使用 ARM 编译器编译时它会失败。编译器是 v. 5.02: http: //infocenter.arm.com/help/index.jsp ?topic=/com.arm.doc.subset.swdev.ds5/index.html
我得到:找不到文件 type_traits ...我认为它此时是标准库的一部分?
我尝试了 make_unsigned 的自定义实现:
namespace internal {
#define MK_MAKEUNSIGNED(T,V) \
template<> struct make_unsigned<T> { \
public: \
typedef V type; \
};
template<typename T>
struct make_unsigned {
typedef T type;
};
MK_MAKEUNSIGNED(sdata8, data8);
MK_MAKEUNSIGNED(sdata16, data16);
MK_MAKEUNSIGNED(sdata32, data32);
MK_MAKEUNSIGNED(sdata64, data64);
#undef MK_MAKEUNSIGNED
};
并修改为:
template<typename T>
void myF(void* a, T* b, T c)
{
internal::make_unsigned<T>::type newC;
internal::make_unsigned<T>::type* newB = ptr_cast<internal::make_unsigned<T>::type*>(b);
...
}
同样,它适用于 VS 2010,但 ARM 编译器给出以下错误:
internal::make_unsigned<T>::type newC; #276 name followed by "::" must be a class or namespace name
^
internal::make_unsigned<T>::type newC; #282 the global scope has no "type"
^
internal::make_unsigned<T>::type newC; #65: expected a ';'
^
internal::make_unsigned<T>::type* newB = static_ptr<internal::make_unsigned<T>::type*>(b); #276 name followed by "::" must be a class or namespace name
^
internal::make_unsigned<T>::type* newB = static_ptr<internal::make_unsigned<T>::type*>(b); #282 the global scope has no "type"
^
internal::make_unsigned<T>::type* newB = static_ptr<internal::make_unsigned<T>::type*>(b); #20 identifier 'newB' nis undefined
^
internal::make_unsigned<T>::type* newB = static_ptr<internal::make_unsigned<T>::type*>(b); #276 name followed by "::" must be a class or namespace name
^
internal::make_unsigned<T>::type* newB = static_ptr<internal::make_unsigned<T>::type*>(b); #276 name followed by "::" must be a class or namespace name
^
internal::make_unsigned<T>::type* newB = static_ptr<internal::make_unsigned<T>::type*>(b); #29 expected an expression
^
所以我似乎无法使用 type_traits 或自定义实现来编译它。任何想法都非常感谢!