A total noob with yaml-cpp. I have a node something like this:
numbers : [1,2,3,4,5]
In the CPP file, I want to parse into a vector:
std::vector<int> vi = node["numbers"];
This doesn't work. I can't find any documentation other than the tutorial- and it isn't covered in the tutoral.