You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/yaml-cpp-test.cpp

9 lines
155 B

#include <assert.h>
#include <yaml-cpp/yaml.h>
int main() {
YAML::Node node = YAML::Load("[1, 2, 3]");
assert(node.IsSequence());
return 0;
}