GCC 4.5.3 中似乎存在一个错误:
#include <type_traits>
template <bool isFundamentalType, bool isSomething>
struct Foo
{
template <typename T>
static inline void* Do(size_t size);
};
template <>
struct Foo<true, false>
{
template <typename T>
static inline void* Do(size_t size)
{
return NULL;
}
};
template <>
struct Foo<false, false>
{
template <typename T>
static inline void* Do(size_t size)
{
return NULL;
}
};
class Bar
{
};
template <typename T>
int Do(size_t size)
{
// The following fails
return (int) Foo<std::is_fundamental<T>::value, false>::Do<T>(size);
// This works -- why?
return (int) Foo<false, false>::Do<T>(size);
}
int main()
{
return Do<Bar>(10);
}
编译
g++ bug.cpp -std=c++0x
错误:
bug.cpp: In function ‘int Do(size_t)’:
bug.cpp:37:65: error: expected primary-expression before ‘>’ token
是否有已知的解决方法可以让我绕过这个问题?
编辑:MSVC 2010 设法编译这个就好了。