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;


_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to