Wdocumentation fix

llvm-svn: 279382
This commit is contained in:
Simon Pilgrim 2016-08-20 20:21:27 +00:00
parent 02b13d4d3c
commit e62d0da8cc
1 changed files with 2 additions and 2 deletions
clang/lib/Analysis

View File

@ -295,7 +295,7 @@ public:
/// \brief Collects data of the given Stmt. /// \brief Collects data of the given Stmt.
/// \param S The given statement. /// \param S The given statement.
/// \param Context The ASTContext of S. /// \param Context The ASTContext of S.
/// \param D The data sink to which all data is forwarded. /// \param DataConsumer The data sink to which all data is forwarded.
StmtDataCollector(const Stmt *S, ASTContext &Context, T &DataConsumer) StmtDataCollector(const Stmt *S, ASTContext &Context, T &DataConsumer)
: Context(Context), DataConsumer(DataConsumer) { : Context(Context), DataConsumer(DataConsumer) {
this->Visit(S); this->Visit(S);
@ -695,7 +695,7 @@ static bool areSequencesClones(const StmtSequence &LHS,
/// \param Group A group of presumed clones. The clones are allowed to have a /// \param Group A group of presumed clones. The clones are allowed to have a
/// different variable pattern and may not be actual clones of each /// different variable pattern and may not be actual clones of each
/// other. /// other.
/// \param CheckVariablePatterns If true, every clone in a group that was added /// \param CheckVariablePattern If true, every clone in a group that was added
/// to the output follows the same variable pattern as the other /// to the output follows the same variable pattern as the other
/// clones in its group. /// clones in its group.
static void createCloneGroups(std::vector<CloneDetector::CloneGroup> &Result, static void createCloneGroups(std::vector<CloneDetector::CloneGroup> &Result,