Remove stray field

This commit is contained in:
Jesse Beder
2015-01-24 17:58:58 -06:00
parent f9ff72dee7
commit 0970a108bd
2 changed files with 3 additions and 4 deletions

View File

@@ -26,11 +26,11 @@ class NullEventHandler : public YAML::EventHandler {
};
int main() {
const YAML::Node node;
YAML::Node root;
std::string key = "doesnotexist";
for (;;) {
node[key];
YAML::Node node;
root = node;
}
return 0;
}