From d977c1e6c589428407beaababb419a2d5d489050 Mon Sep 17 00:00:00 2001 From: John Thompson Date: Wed, 27 Mar 2013 18:34:38 +0000 Subject: [PATCH] Fixed path in file comment. Fixed #include order. llvm-svn: 178164 --- clang-tools-extra/modularize/Modularize.cpp | 30 ++++++++++----------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/clang-tools-extra/modularize/Modularize.cpp b/clang-tools-extra/modularize/Modularize.cpp index af3455340cd7..7b283321e1b4 100644 --- a/clang-tools-extra/modularize/Modularize.cpp +++ b/clang-tools-extra/modularize/Modularize.cpp @@ -1,4 +1,4 @@ -//===- tools/clang/Modularize.cpp - Check modularized headers -------------===// +//===- extra/modularize/Modularize.cpp - Check modularized headers --------===// // // The LLVM Compiler Infrastructure // @@ -66,27 +66,27 @@ // //===----------------------------------------------------------------------===// +#include "clang/AST/ASTConsumer.h" +#include "clang/AST/ASTContext.h" +#include "clang/AST/RecursiveASTVisitor.h" +#include "clang/Basic/SourceManager.h" +#include "clang/Frontend/CompilerInstance.h" +#include "clang/Frontend/FrontendActions.h" +#include "clang/Lex/Preprocessor.h" +#include "clang/Tooling/CompilationDatabase.h" +#include "clang/Tooling/Tooling.h" +#include "llvm/ADT/OwningPtr.h" +#include "llvm/ADT/StringRef.h" #include "llvm/Config/config.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/FileSystem.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/Path.h" -#include "llvm/ADT/OwningPtr.h" -#include "llvm/ADT/StringRef.h" -#include "clang/Basic/SourceManager.h" -#include "clang/Lex/Preprocessor.h" -#include "clang/AST/ASTConsumer.h" -#include "clang/AST/ASTContext.h" -#include "clang/AST/RecursiveASTVisitor.h" -#include "clang/Frontend/CompilerInstance.h" -#include "clang/Frontend/FrontendActions.h" -#include "clang/Tooling/CompilationDatabase.h" -#include "clang/Tooling/Tooling.h" -#include -#include -#include #include +#include #include +#include +#include using namespace clang::tooling; using namespace clang;