什么json.hpp用于mac

时间:2018-01-27 03:58:08

标签: c++ json macos

我正在编写一个编程任务,它需要我读取一个json文件。为此,我使用的是https://github.com/nlohmann/json。当我#include“json.hpp”时,我收到错误。我猜这是因为我需要为Mac正确编码。但我不知道该怎么做!有人能帮助我吗?

Here is an image of my compiler ouput

1 个答案:

答案 0 :(得分:0)

该库是用C ++ 11编写的(根据文档)。

默认情况下,您的编译器不使用C ++ 11。要修复它将需要这样的东西:

g++ -std=c++11 ...

如果它抱怨-std=c++11无效,请尝试-std=c++0x(过时的同义词)。