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

A YAML parser and emitter in C++

Results 231 yaml-cpp issues
Sort by recently updated
recently updated
newest added

Importing yaml-cpp via vcpkg is broken due to this. When trying to build locally, the following error occurs: ``` FAILED: CMakeFiles/yaml-cpp.dir/src/emitterutils.cpp.o /usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/faith/.local/share/vcpkg/buildtrees/yaml-cpp/src/0.8.0-eb57a68db8.clean/include -I/home/faith/.local/share/vcpkg/buildtrees/yaml-cpp/src/0.8.0-eb57a68db8.clean/src -fPIC -g -std=gnu++11 -fPIC -Wall...

If a project is using the facade-header yaml-cpp/yaml.h it might get `misc-include-cleaner` warnings from the `clangd` language server and `clang-tidy` that this header is not providing directly the symbols used....

For example the number 1.0 will be converted to "1.0" instead of "1". This allows to keep the correct type information when parsing back the YAML. This is an attempt...

``` [ 55%] Building CXX object test/prefix/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o In file included from /home/gh/throw/yaml_test/yaml-cpp-yaml-cpp-0.7.0/test/gtest-1.10.0/googletest/src/gtest-all.cc:42: /home/gh/throw/yaml_test/yaml-cpp-yaml-cpp-0.7.0/test/gtest-1.10.0/googletest/src/gtest-death-test.cc: In function ‘bool testing::internal::StackGrowsDown()’: /home/gh/throw/yaml_test/yaml-cpp-yaml-cpp-0.7.0/test/gtest-1.10.0/googletest/src/gtest-death-test.cc:1301:24: error: ‘dummy’ may be used uninitialized [-Werror=maybe-uninitialized] 1301 | StackLowerThanAddress(&dummy, &result); |...

When compiling programs using yaml-cpp on MSYS64/mingw64 (and possibly other Windows platforms), a #pragma message is displayed from dll.h:22 in every single source file being compiled. This results in huge...

googletest 1.13 requires at least C++14

Below is a minimal example to reproduce the issue. It appears using `SetTag` breaks (w.r.t console/file emitting for the very least) `string_node` when tagging with anything starting with "!!". Not...