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); _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits