我在Eclipse中使用gcc 4.8.0的库;但是,测试以下代码
#include <iostream>
#include <random>
int main()
{
int randomSeed = 1234;
std::mt19937 gen(randomSeed);
return 0;
}
导致错误“类型'std :: mt19937'无法解析”
我使用了-std = c ++ 11和-std = c ++ 0x标记但没有成功,如上一篇文章所述:Eclipse does not include C++ libraries correctly in Kubuntu
-reptar