yaml-cpp icon indicating copy to clipboard operation
yaml-cpp copied to clipboard

A YAML parser and emitter in C++

Results 186 yaml-cpp issues
Sort by recently updated
recently updated
newest added
trafficstars

Amends 26faac387c237ccac75a56925c6858baf8ccda1b.

A documentation related question about "How-to-parse-a-document-old-api.md": The old API breaks if you skip to this section without reading the earlier tutorial section "Converting To/From Native Data Types" wherein the righteous...

Support conversion from and to std::valarray.

Built target yaml-cpp-tests Install the project... -- Install configuration: "" -- Installing: /usr/local/lib/libyaml-cpp.so.0.6.3 CMake Error at cmake_install.cmake:52 (file): file INSTALL cannot copy file "/home/abc/yaml-cpp/build/libyaml-cpp.so.0.6.3" to "/usr/local/lib/libyaml-cpp.so.0.6.3". Makefile:128: recipe for target...

yaml-cpp will break cmake IPO, if clients choose to use it. This caused a minor issue in our builds, when we started including it. Either set the policy explicitly or...

Ref. #937 This will turn of these flags which trigger false positives in GNU and Intel compilers.

Since this option is a known bug in these compilers, I think it would be worth while to turn if off when they are active.

Hi, this code with memory leak ` YAML::Node a; for (;;) a = YAML::Load("{1B: Prince Fielder, 2B: Rickie Weeks, LF: Ryan Braun}"); `

In a trivial example: bool Config::Load(std::string _filename) { config = YAML::LoadFile(_filename); switch (config.Type()) { case YAML::NodeType::Null: // ... cout

- Update the usage of bazel in README.md - Fix bug with bazel external project dependency: can not build success as a bazel external project