[clang-tools-extra] r257600 - [clang-tidy] Slightly clarified comments.

Alexander Kornienko via cfe-commits cfe-commits at lists.llvm.org
Wed Jan 13 06:16:43 PST 2016


Author: alexfh
Date: Wed Jan 13 08:16:43 2016
New Revision: 257600

URL: http://llvm.org/viewvc/llvm-project?rev=257600&view=rev
Log:
[clang-tidy] Slightly clarified comments.

Modified:
    clang-tools-extra/trunk/clang-tidy/misc/VirtualNearMissCheck.h

Modified: clang-tools-extra/trunk/clang-tidy/misc/VirtualNearMissCheck.h
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clang-tidy/misc/VirtualNearMissCheck.h?rev=257600&r1=257599&r2=257600&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-tidy/misc/VirtualNearMissCheck.h (original)
+++ clang-tools-extra/trunk/clang-tidy/misc/VirtualNearMissCheck.h Wed Jan 13 08:16:43 2016
@@ -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);
 




More information about the cfe-commits mailing list