From 879f96d2f67039aeca98b14a0b70b05936b32119 Mon Sep 17 00:00:00 2001 From: Jesse Beder Date: Tue, 22 May 2012 12:59:58 -0500 Subject: [PATCH] Tweak sandbox --- util/sandbox.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/sandbox.cpp b/util/sandbox.cpp index 2ffbf0a..b67fc2b 100644 --- a/util/sandbox.cpp +++ b/util/sandbox.cpp @@ -11,9 +11,10 @@ int main() out << YAML::BeginMap << YAML::Comment("b"); out << "pens" << YAML::Comment("foo") << "a" << YAML::Comment("bar"); out << "pencils" << "b"; - out << YAML::EndMap; + out << YAML::EndMap << YAML::Comment("monkey"); out << "item 2"; out << YAML::EndSeq; + out << YAML::Comment("end"); std::cout << out.c_str() << "\n"; return 0;