Added long key

This commit is contained in:
Jesse Beder
2012-05-22 14:26:34 -05:00
parent 41e4cd3308
commit bf07af52ff
2 changed files with 48 additions and 42 deletions

View File

@@ -8,7 +8,9 @@ int main()
out << YAML::BeginMap;
out << "a" << "b";
out << YAML::EndMap;
out << "c";
out << YAML::BeginMap;
out << "a" << "b";
out << YAML::EndMap;
out << YAML::EndMap;
std::cout << out.c_str() << "\n";