[NFC][clang] Fixes whitespace.
authorMark de Wever <koraq@xs4all.nl>
Sat, 22 Jul 2023 14:50:58 +0000 (16:50 +0200)
committerMark de Wever <koraq@xs4all.nl>
Sat, 22 Jul 2023 14:50:58 +0000 (16:50 +0200)
These changes cause the Buildkite CI to fail.

clang/include/clang/AST/PropertiesBase.td
clang/lib/Analysis/UnsafeBufferUsage.cpp

index cd8b95b..c6fe790 100644 (file)
@@ -497,7 +497,7 @@ let Class = PropertyTypeCase<APValue, "LValue"> in {
   }
   def : Property<"type", QualType> {
     let Conditional = [{ hasBase && (isTypeInfo || isDynamicAlloc) }];
-    let Read = [{ 
+    let Read = [{
       isTypeInfo
         ? node.getLValueBase().getTypeInfoType()
         : node.getLValueBase().getDynamicAllocType()
index 54569b4..5cde60c 100644 (file)
@@ -1889,11 +1889,11 @@ createOverloadsForFixedParams(unsigned ParmIdx, StringRef NewTyText,
       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 a parameter of a function definition has no name:
+      if (!Parm->getIdentifier())
+        // If a parameter of a function definition has no name:
         return std::nullopt;
       if (i == ParmIdx)
         // This is our spanified paramter!
@@ -2208,7 +2208,7 @@ void clang::checkUnsafeBufferUsage(const Decl *D,
                                    UnsafeBufferUsageHandler &Handler,
                                    bool EmitSuggestions) {
   assert(D && D->getBody());
-  
+
   // We do not want to visit a Lambda expression defined inside a method independently.
   // Instead, it should be visited along with the outer method.
   if (const auto *fd = dyn_cast<CXXMethodDecl>(D)) {