diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-10-04 08:32:33 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-10-04 08:32:33 +0000 |
commit | 90893f0eabd04f012861472b2ec1444127ca6c92 (patch) | |
tree | 3ad4c6ecbd5945815b125ca3efc1861070ea3f5b | |
parent | 3a61cabbb26d863999f5aaebec884f36f406df97 (diff) | |
download | bcm5719-llvm-90893f0eabd04f012861472b2ec1444127ca6c92.tar.gz bcm5719-llvm-90893f0eabd04f012861472b2ec1444127ca6c92.zip |
Revert r283106, "Wdocumentation fix"
It should depend on r283094 and r283182.
llvm-svn: 283195
-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 1b43cfb2741..a91ccaa4d2c 100644 --- a/clang/lib/Analysis/CloneDetection.cpp +++ b/clang/lib/Analysis/CloneDetection.cpp @@ -106,7 +106,7 @@ class VariablePattern { /// \brief Adds a new variable referenced to this pattern. /// \param VarDecl The declaration of the variable that is referenced. - /// \param Mention The statement in the code where the variable was referenced. + /// \param Range The SourceRange where this variable is referenced. void addVariableOccurence(const VarDecl *VarDecl, SourceRange Range) { // First check if we already reference this variable for (size_t KindIndex = 0; KindIndex < Variables.size(); ++KindIndex) { |