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

Converting a u/int8_t (that have been encoded as an `int`) seems to treat the type as an `unsigned char`. Seems to be identical to #201. Minimal failling example: ```cpp Node...

You can also cause a segfault by defining D_GLIBCXX_DEBUG when building the unit tests and running them.

There is no need to use the embedded gtest code copy in Linux systems, if they already provide the googletest framework system-wide. Search for it, and fallback to the embedded...

Currently any float/double with no decimal component gets emitted as an integer. ``` float a = 1.0; YAML::Emitter emitter; // regardless of the Precision manipulator emitter

It would be useful to have an `into()` operator on the `Node` class modeled off the `get_to()` operator in the popular `nlohmann::json` library. (See: https://github.com/nlohmann/json#basic-usage) This operator assigns a casted...

yaml-cpp: 0.6.2 Arch: Linux x86_64 Compiler: gcc/7.2.0, C++14 Works right once using ``cpp `YAML::Node findNode = m_node; ``` Returns zero using ```cpp YAML::Node findNode = Clone(m_node); ``` Self contained example:...

This restores the CMake / installed files behaviour of version 0.6.3 which changed in 0.7.0, resulting in arch-dependent files ending up in /usr/share instead of $prefix/libdir. This is required on...

I have a yaml file which contains nearly 2000 nodes(4 or 5 map elements per node). At the very beginning, I intended to open it with file stream ,read every...

Trying to install yaml-cpp 0.7.0 on Windows, I see that the default install directory is `YAML_CPP` instead of the expected `yaml-cpp` directory under the `CMAKE_SYSTEM_PREFIX_PATH `. It looks like it...

follow up to #1056 enables tests to show failures