Author: dingfei
Date: 2023-07-28T08:36:51+08:00
New Revision: 38b648b4a1ab9f3eef3d44a286034df34b4d0ecb

URL: 
https://github.com/llvm/llvm-project/commit/38b648b4a1ab9f3eef3d44a286034df34b4d0ecb
DIFF: 
https://github.com/llvm/llvm-project/commit/38b648b4a1ab9f3eef3d44a286034df34b4d0ecb.diff

LOG: [clang][Analysis][NFC] Remove indented empty lines (fix format checking)

Added: 
    

Modified: 
    clang/lib/Analysis/UnsafeBufferUsage.cpp

Removed: 
    


################################################################################
diff  --git a/clang/lib/Analysis/UnsafeBufferUsage.cpp 
b/clang/lib/Analysis/UnsafeBufferUsage.cpp
index d0451401dc305a..5782ad7e6e443e 100644
--- a/clang/lib/Analysis/UnsafeBufferUsage.cpp
+++ b/clang/lib/Analysis/UnsafeBufferUsage.cpp
@@ -872,7 +872,7 @@ class DeclUseTracker {
     }
     return ReturnSet;
   }
-  
+
   void discoverDecl(const DeclStmt *DS) {
     for (const Decl *D : DS->decls()) {
       if (const auto *VD = dyn_cast<VarDecl>(D)) {
@@ -1985,7 +1985,7 @@ static FixItList fixParamWithSpan(const ParmVarDecl *PVD, 
const ASTContext &Ctx,
     DEBUG_NOTE_DECL_FAIL(PVD, " : has default arg");
     return {};
   }
-  
+
   assert(PVD->getType()->isPointerType());
   auto *FD = dyn_cast<FunctionDecl>(PVD->getDeclContext());
 


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

Reply via email to