Author: Anton Rydahl
Date: 2023-08-18T12:12:36-07:00
New Revision: 630ba7d705fa1d55096dbbf88c6886d64033a780

URL: 
https://github.com/llvm/llvm-project/commit/630ba7d705fa1d55096dbbf88c6886d64033a780
DIFF: 
https://github.com/llvm/llvm-project/commit/630ba7d705fa1d55096dbbf88c6886d64033a780.diff

LOG: Removed whitespace that made "grep -rnI '[[:blank:]]$' clang/lib 
clang/include clang/docs" fail

Added: 
    

Modified: 
    clang/lib/Analysis/UnsafeBufferUsage.cpp

Removed: 
    


################################################################################
diff  --git a/clang/lib/Analysis/UnsafeBufferUsage.cpp 
b/clang/lib/Analysis/UnsafeBufferUsage.cpp
index 2c36d78e60c89b..8152eb53da71c2 100644
--- a/clang/lib/Analysis/UnsafeBufferUsage.cpp
+++ b/clang/lib/Analysis/UnsafeBufferUsage.cpp
@@ -739,7 +739,7 @@ class UPCStandalonePointerGadget : public FixableGadget {
   static Matcher matcher() {
     auto ArrayOrPtr = anyOf(hasPointerType(), hasArrayType());
     auto target = expr(
-        ignoringParenImpCasts(declRefExpr(allOf(ArrayOrPtr, 
+        ignoringParenImpCasts(declRefExpr(allOf(ArrayOrPtr,
                               toSupportedVariable())).bind(DeclRefExprTag)));
     return stmt(isInUnspecifiedPointerContext(target));
   }


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

Reply via email to