diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2016-10-03 12:37:08 +0000 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2016-10-03 12:37:08 +0000 |
commit | efd40060801402c8e02eae6d29391a58636d80d7 (patch) | |
tree | 273cb26352b199235a0437411555bf20fe016bac | |
parent | ea9b59a33de1999ae8b56734d2af05deff687bb9 (diff) | |
download | bcm5719-llvm-efd40060801402c8e02eae6d29391a58636d80d7.tar.gz bcm5719-llvm-efd40060801402c8e02eae6d29391a58636d80d7.zip |
Wdocumentation fix
llvm-svn: 283106
-rw-r--r-- | clang/lib/Analysis/CloneDetection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Analysis/CloneDetection.cpp b/clang/lib/Analysis/CloneDetection.cpp index dba89eca1f3..4fdac5abbd4 100644 --- a/clang/lib/Analysis/CloneDetection.cpp +++ b/clang/lib/Analysis/CloneDetection.cpp @@ -110,7 +110,7 @@ class VariablePattern { /// \brief Adds a new variable referenced to this pattern. /// \param VarDecl The declaration of the variable that is referenced. - /// \param Range The SourceRange where this variable is referenced. + /// \param Mention The statement in the code where the variable was referenced. void addVariableOccurence(const VarDecl *VarDecl, const Stmt *Mention) { // First check if we already reference this variable for (size_t KindIndex = 0; KindIndex < Variables.size(); ++KindIndex) { |