From 21c73cccc9aa10ae047fcb81c83a92337eee43be Mon Sep 17 00:00:00 2001 From: jcasals <jcasals@iri.upc.edu> Date: Fri, 17 Jan 2020 16:15:15 +0100 Subject: [PATCH] Fix parser_yaml.hpp to parse null lines --- include/core/yaml/parser_yaml.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/core/yaml/parser_yaml.hpp b/include/core/yaml/parser_yaml.hpp index 99c1c8c10..b4dd57825 100644 --- a/include/core/yaml/parser_yaml.hpp +++ b/include/core/yaml/parser_yaml.hpp @@ -355,6 +355,8 @@ void ParserYAML::walkTreeR(YAML::Node n, std::vector<std::string>& tags, std::st } break; } + case YAML::NodeType::Null : + break; default: assert(1 == 0 && "Unsupported node Type at walkTreeR."); break; -- GitLab