python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to print out a yaml::Node?
I have tried many different ways to do this. I have a bunch of nodes nested under each other e.g:
yaml::Node a;
a["foo"] = 3;
yaml::Node b;
b["baz"] = 7;
a["bar"] = b;
I...
user491880
Votes: 0
Answers: 1
Getting YAML::TypedBadConversion when trying to read string value with yaml-cpp
I have been having a error that I can't figure out why a getting it. When trying to read the following file example.yaml:
BFS_power:
graph: power.graph
type: METIS
BFS_avg:
graph: DEFAULT
type...
Relux the Relux
Votes: 0
Answers: 1
Why do some Conan packages delete CMake Package information
I'm relatively new to Conan. I'm trying to use packages provided by conan in a very natural cmake way...i.e. I don't want anything conan specific in the consuming library's CMakeLists.txt. I just wan...
schrödinbug
Votes: 0
Answers: 1
vs2019 meet LNK2001 while using external static library yaml-cpp.lib
I built yaml-cpp staticly using vs2019 and got lib from path yaml-cpp-master\build\Release\yaml-cpp.lib, now I intend to add it to my own project, simple code follows:
#include <yaml-cpp/yaml.h>...
Okifu Nearl
Votes: 0
Answers: 1