Skip to content
Snippets Groups Projects
Commit 21c73ccc authored by Joaquim Casals Buñuel's avatar Joaquim Casals Buñuel
Browse files

Fix parser_yaml.hpp to parse null lines

parent 5317a41d
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment