g++ -std=c++0x
'ing后std::result_of
产生以下错误信息
error: ‘result_of’ in namespace ‘std’ does not name a type
(SUSE 上的 g++ 版本 4.5.0。)
足以重现错误的相关代码如下
#include <random>
#include <type_traits>
using namespace std;
class Rnd{
protected:
static default_random_engine generator_;
};
template<class distribution>
class Distr: Rnd{
distribution distribution_;
public:
typename std::result_of<distribution(default_random_engine)>::type
operator() (){ return distribution_(default_random_engine); }
};
此外,我尝试从 wikipedia 或 cpluplus.com 编译示例,但无济于事。这是特定编译器的问题还是我做错了什么?