Skip to content

Commit

Permalink
Merge pull request #2 from SeisSol/fix-special-parser
Browse files Browse the repository at this point in the history
Bugfix: SpecialMap could not have children.
  • Loading branch information
krenzland committed Nov 8, 2019
2 parents 14cd7df + 6e474f7 commit a6d097e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions include/easi/parser/YAMLComponentParsers.h
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,9 @@ Component* createSpecial(YAML::Node const& node, std::set<std::string> const& in

SpecialMap<Special>* component = new SpecialMap<Special>;
component->setMap(constants);

parse<Map>(component, node, in, parser);

return component;
}
}
Expand Down

0 comments on commit a6d097e

Please sign in to comment.