r250500 - Test commit
Sean Eveson via cfe-commits
cfe-commits at lists.llvm.org
Fri Oct 16 01:54:23 PDT 2015
Author: seaneveson
Date: Fri Oct 16 03:54:23 2015
New Revision: 250500
URL: http://llvm.org/viewvc/llvm-project?rev=250500&view=rev
Log:
Test commit
Modified:
cfe/trunk/lib/StaticAnalyzer/Core/CallEvent.cpp
Modified: cfe/trunk/lib/StaticAnalyzer/Core/CallEvent.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/StaticAnalyzer/Core/CallEvent.cpp?rev=250500&r1=250499&r2=250500&view=diff
==============================================================================
--- cfe/trunk/lib/StaticAnalyzer/Core/CallEvent.cpp (original)
+++ cfe/trunk/lib/StaticAnalyzer/Core/CallEvent.cpp Fri Oct 16 03:54:23 2015
@@ -408,7 +408,7 @@ void CXXInstanceCall::getExtraInvalidate
SVal ThisVal = getCXXThisVal();
Values.push_back(ThisVal);
- // Don't invalidate if the method is const and there are no mutable fields
+ // Don't invalidate if the method is const and there are no mutable fields.
if (const CXXMethodDecl *D = cast_or_null<CXXMethodDecl>(getDecl())) {
if (!D->isConst())
return;
More information about the cfe-commits
mailing list