Fix formatting after Module.h include adjustment, NFC
authorReid Kleckner <rnk@google.com>
Wed, 11 Mar 2020 20:52:28 +0000 (13:52 -0700)
committerReid Kleckner <rnk@google.com>
Wed, 11 Mar 2020 20:52:47 +0000 (13:52 -0700)
Forgot to implement code review comments.

clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistry.h
clang/lib/AST/ASTContext.cpp

index 90976c4..8f0c7ed 100644 (file)
@@ -11,9 +11,9 @@
 
 #include "clang/Basic/LLVM.h"
 #include "clang/StaticAnalyzer/Core/CheckerManager.h"
+#include "llvm/ADT/SetVector.h"
 #include "llvm/ADT/StringMap.h"
 #include "llvm/ADT/StringRef.h"
-#include "llvm/ADT/SetVector.h"
 #include <cstddef>
 #include <vector>
 
index 9851309..e50d1d6 100644 (file)
@@ -1616,7 +1616,8 @@ void ASTContext::getOverriddenMethods(
 }
 
 void ASTContext::addedLocalImportDecl(ImportDecl *Import) {
-  assert(!Import->getNextLocalImport() && "Import declaration already in the chain");
+  assert(!Import->getNextLocalImport() &&
+         "Import declaration already in the chain");
   assert(!Import->isFromASTFile() && "Non-local import declaration");
   if (!FirstLocalImport) {
     FirstLocalImport = Import;