aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Kornienko <alexfh@google.com>2016-01-13 14:16:43 +0000
committerAlexander Kornienko <alexfh@google.com>2016-01-13 14:16:43 +0000
commite2ddab9dc5484edc870fe8ff19c9762ef6373dba (patch)
tree06bec0e0394e30be245c6cc8f70dbed108d3c9fe
parent0ced36451f6d5da042dbe7fff3b91f753cd31b0e (diff)
[clang-tidy] Slightly clarified comments.
git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@257600 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--clang-tidy/misc/VirtualNearMissCheck.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang-tidy/misc/VirtualNearMissCheck.h b/clang-tidy/misc/VirtualNearMissCheck.h
index fda279b5..97cb3eaa 100644
--- a/clang-tidy/misc/VirtualNearMissCheck.h
+++ b/clang-tidy/misc/VirtualNearMissCheck.h
@@ -36,13 +36,13 @@ private:
/// Check if the given method is possible to be overridden by some other
/// method.
///
- /// It should look up the PossibleMap or update it.
+ /// Results are memoized in PossibleMap.
bool isPossibleToBeOverridden(const CXXMethodDecl *BaseMD);
/// Check if the given base method is overridden by some methods in the given
/// derived class.
///
- /// It should look up the OverriddenMap or update it.
+ /// Results are memoized in OverriddenMap.
bool isOverriddenByDerivedClass(const CXXMethodDecl *BaseMD,
const CXXRecordDecl *DerivedRD);