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から例をコンパイルしようとしましたが無駄になりました。それは特定のコンパイラに問題がありますか、それとも私は何か間違ったことをしていますか?