diff options
Diffstat (limited to 'src/qdoc/node.cpp')
-rw-r--r-- | src/qdoc/node.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/qdoc/node.cpp b/src/qdoc/node.cpp index 21869e597..1142d446a 100644 --- a/src/qdoc/node.cpp +++ b/src/qdoc/node.cpp @@ -627,17 +627,6 @@ QString Node::fullName(const Node *relative) const } /*! - Try to match this node's type with one of the \a types. - If a match is found, return true. If no match is found, - return false. - */ -bool Node::match(const QList<int> &types) const -{ - return std::any_of(types.cbegin(), types.cend(), - [this](const int type) { return nodeType() == type; }); -} - -/*! Sets this Node's Doc to \a doc. If \a replace is false and this Node already has a Doc, and if this doc is not marked with the \\reimp command, a warning is reported that the |