我正在尝试 yaml-cpp (r589:2c954b1ed301),但我在使用以下代码时遇到了问题。
#include <iostream>
#include <yaml-cpp/yaml.h>
int main()
{
YAML::Node doc;
std::cout << doc << std::endl; // SEGV
doc["sub"] = YAML::Node();
std::cout << doc << std::endl; // OK
doc = YAML::Load("");
std::cout << doc << std::endl; // OK
std::cout << YAML::Load("") << std::endl; // SEGV
std::cout << YAML::Load("a") << std::endl; // OK
YAML::Node doc2 = YAML::Load("");
std::cout << doc2 << std::endl; // SEGV
return 0;
}
该代码在 Scientific Linux 6.4 上使用 g++ 4.4.7 编译。我不确定这个错误是否只发生在我的环境中。我会很感激你的意见和建议。