AMP999 created this revision.
AMP999 added a reviewer: clang.
AMP999 added a project: clang.
Herald added a reviewer: NoQ.
Herald added a project: All.
AMP999 requested review of this revision.
Herald added a subscriber: cfe-commits.

`clang/utils/ci/run-buildbot check-format` command in build process caused my 
last differential, https://reviews.llvm.org/D155714, to fail 
(https://buildkite.com/llvm-project/clang-ci/builds/355) and when I checked the 
logs and found out that the problem doesn't reside in my change. So I fixed the 
linting problem in the `clang/lib/Analysis/UnsafeBufferUsage.cpp` file which is 
to remove some redundant white spaces.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D155814

Files:
  clang/lib/Analysis/UnsafeBufferUsage.cpp


Index: clang/lib/Analysis/UnsafeBufferUsage.cpp
===================================================================
--- clang/lib/Analysis/UnsafeBufferUsage.cpp
+++ clang/lib/Analysis/UnsafeBufferUsage.cpp
@@ -1890,10 +1890,10 @@
       const ParmVarDecl *Parm = FD->getParamDecl(i);
 
       if (Parm->isImplicit())
-        continue;      
+        continue;
       // FIXME: If a parameter has no name, it is unused in the
       // definition. So we could just leave it as it is.
-      if (!Parm->getIdentifier()) 
+      if (!Parm->getIdentifier())
        // If a parameter of a function definition has no name:
         return std::nullopt;
       if (i == ParmIdx)


Index: clang/lib/Analysis/UnsafeBufferUsage.cpp
===================================================================
--- clang/lib/Analysis/UnsafeBufferUsage.cpp
+++ clang/lib/Analysis/UnsafeBufferUsage.cpp
@@ -1890,10 +1890,10 @@
       const ParmVarDecl *Parm = FD->getParamDecl(i);
 
       if (Parm->isImplicit())
-        continue;      
+        continue;
       // FIXME: If a parameter has no name, it is unused in the
       // definition. So we could just leave it as it is.
-      if (!Parm->getIdentifier()) 
+      if (!Parm->getIdentifier())
 	// If a parameter of a function definition has no name:
         return std::nullopt;
       if (i == ParmIdx)
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to