[clang-tools-extra] r349132 - [clang-tidy] Remove extra config.h includes
Ivan Donchevskii via cfe-commits
cfe-commits at lists.llvm.org
Thu Dec 13 23:44:53 PST 2018
Author: yvvan
Date: Thu Dec 13 23:44:52 2018
New Revision: 349132
URL: http://llvm.org/viewvc/llvm-project?rev=349132&view=rev
Log:
[clang-tidy] Remove extra config.h includes
It's included in a new header ClangTidyForceLinker.h and should not
be included the second time.
Follow up for the https://reviews.llvm.org/D55595
Modified:
clang-tools-extra/trunk/clang-tidy/plugin/ClangTidyPlugin.cpp
clang-tools-extra/trunk/clang-tidy/tool/ClangTidyMain.cpp
Modified: clang-tools-extra/trunk/clang-tidy/plugin/ClangTidyPlugin.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clang-tidy/plugin/ClangTidyPlugin.cpp?rev=349132&r1=349131&r2=349132&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-tidy/plugin/ClangTidyPlugin.cpp (original)
+++ clang-tools-extra/trunk/clang-tidy/plugin/ClangTidyPlugin.cpp Thu Dec 13 23:44:52 2018
@@ -10,7 +10,6 @@
#include "../ClangTidy.h"
#include "../ClangTidyForceLinker.h"
#include "../ClangTidyModule.h"
-#include "clang/Config/config.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Frontend/FrontendPluginRegistry.h"
#include "clang/Frontend/MultiplexConsumer.h"
Modified: clang-tools-extra/trunk/clang-tidy/tool/ClangTidyMain.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clang-tidy/tool/ClangTidyMain.cpp?rev=349132&r1=349131&r2=349132&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-tidy/tool/ClangTidyMain.cpp (original)
+++ clang-tools-extra/trunk/clang-tidy/tool/ClangTidyMain.cpp Thu Dec 13 23:44:52 2018
@@ -17,7 +17,6 @@
#include "../ClangTidy.h"
#include "../ClangTidyForceLinker.h"
-#include "clang/Config/config.h"
#include "clang/Tooling/CommonOptionsParser.h"
#include "llvm/Support/Process.h"
#include "llvm/Support/Signals.h"
More information about the cfe-commits
mailing list