diff options
Diffstat (limited to 'src/clients/cave/cmd_match.cc')
-rw-r--r-- | src/clients/cave/cmd_match.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/clients/cave/cmd_match.cc b/src/clients/cave/cmd_match.cc index 129f6d4ee..f422ae639 100644 --- a/src/clients/cave/cmd_match.cc +++ b/src/clients/cave/cmd_match.cc @@ -190,6 +190,11 @@ namespace std::for_each(indirect_iterator(node.begin()), indirect_iterator(node.end()), accept_visitor(*this)); } + void visit(const GenericSpecTree::NodeType<AtMostOneDepSpec>::Type & node) + { + std::for_each(indirect_iterator(node.begin()), indirect_iterator(node.end()), accept_visitor(*this)); + } + void visit(const GenericSpecTree::NodeType<SimpleURIDepSpec>::Type & node) { texts.push_back(stringify(*node.spec())); |