[clang] 630ba7d - Removed whitespace that made "grep -rnI '[[:blank:]]$' clang/lib clang/include clang/docs" fail
via cfe-commits
cfe-commits at lists.llvm.org
Fri Aug 18 12:13:04 PDT 2023
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));
}
More information about the cfe-commits
mailing list