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

I'm trying to load file `hello.yaml`, that looks like: ``` version: "1.0" ``` Using code below: ``` YAML::Node config = YAML::LoadFile("/home/jetson/hello.yaml"); std::cout

Hi, I've created a documentation with API reference, you can see it at https://yaml-cpp.docsforge.com/ Hope it's helpful for anyone using yaml-cpp. The docs are built automatically every week so they...

I have a `YAML::Node` which I use as a map. When accessing the map with `std::string` everything works fine. But if I access it with a YAML::Node which just represents...

Add emition of json that keaps the types of the build in onjects. I know that it is possible to emmit valid json with something like: `emitter

![image](https://user-images.githubusercontent.com/21275667/95356821-ad29aa80-08f9-11eb-9372-e8a1b1169c99.png) Visual Studio 2019 complains when compiling with C++ 17 (node_iterator.h)

Otherwise they may get misinterpreted, or cause a syntax error even.

i use cmake to configure and generate a vs 2017 project. than i compile the project x64 but many errors : "Error C2220 warning treated as error - no 'object'...

I just started using `yaml-cpp` and I did navigation from key like: `"my.magic.str.value"` to access nested values in YAML files. I did this with code: ``` YAML::Node node = _root;...