Rename directory housing clang-include-fixer to be eponymous

Makes the name of this directory consistent with the names of the other
directories in clang-tools-extra.

Similar to r356254. No intended behavior change.

Differential Revision: https://reviews.llvm.org/D59750

llvm-svn: 356897
This commit is contained in:
Nico Weber 2019-03-25 14:09:10 +00:00
parent 2ef15d82e9
commit 43356f56bd
73 changed files with 73 additions and 70 deletions

View File

@ -11,10 +11,10 @@ add_subdirectory(clang-tidy-vs)
add_subdirectory(clang-change-namespace) add_subdirectory(clang-change-namespace)
add_subdirectory(clang-doc) add_subdirectory(clang-doc)
add_subdirectory(clang-query) add_subdirectory(clang-include-fixer)
add_subdirectory(clang-move) add_subdirectory(clang-move)
add_subdirectory(clang-query)
add_subdirectory(clangd) add_subdirectory(clangd)
add_subdirectory(include-fixer)
add_subdirectory(pp-trace) add_subdirectory(pp-trace)
add_subdirectory(tool-template) add_subdirectory(tool-template)

View File

@ -31,7 +31,7 @@ namespace include_fixer {
// Implementations may choose to truncate results, refuse short queries, etc. // Implementations may choose to truncate results, refuse short queries, etc.
class FuzzySymbolIndex : public SymbolIndex { class FuzzySymbolIndex : public SymbolIndex {
public: public:
// Loads the specified include-fixer database and returns an index serving it. // Loads the specified clang-include-fixer database and returns an index serving it.
static llvm::Expected<std::unique_ptr<FuzzySymbolIndex>> static llvm::Expected<std::unique_ptr<FuzzySymbolIndex>>
createFromYAML(llvm::StringRef File); createFromYAML(llvm::StringRef File);

View File

@ -16,7 +16,7 @@
#include "llvm/Support/Debug.h" #include "llvm/Support/Debug.h"
#include "llvm/Support/raw_ostream.h" #include "llvm/Support/raw_ostream.h"
#define DEBUG_TYPE "include-fixer" #define DEBUG_TYPE "clang-include-fixer"
using namespace clang; using namespace clang;
@ -348,8 +348,8 @@ IncludeFixerSemaSource::query(StringRef Query, StringRef ScopedQualifiers,
// //
// We use conservative behavior for detecting the same unidentified symbol // We use conservative behavior for detecting the same unidentified symbol
// here. The symbols which have the same ScopedQualifier and RawIdentifier // here. The symbols which have the same ScopedQualifier and RawIdentifier
// are considered equal. So that include-fixer avoids false positives, and // are considered equal. So that clang-include-fixer avoids false positives,
// always adds missing qualifiers to correct symbols. // and always adds missing qualifiers to correct symbols.
if (!GenerateDiagnostics && !QuerySymbolInfos.empty()) { if (!GenerateDiagnostics && !QuerySymbolInfos.empty()) {
if (ScopedQualifiers == QuerySymbolInfos.front().ScopedQualifiers && if (ScopedQualifiers == QuerySymbolInfos.front().ScopedQualifiers &&
Query == QuerySymbolInfos.front().RawIdentifier) { Query == QuerySymbolInfos.front().RawIdentifier) {

View File

@ -67,7 +67,7 @@ private:
/// ///
/// \param Code The source code. /// \param Code The source code.
/// \param Context The context which contains all information for creating /// \param Context The context which contains all information for creating
/// include-fixer replacements. /// clang-include-fixer replacements.
/// \param Style clang-format style being used. /// \param Style clang-format style being used.
/// \param AddQualifiers Whether we should add qualifiers to all instances of /// \param AddQualifiers Whether we should add qualifiers to all instances of
/// an unidentified symbol. /// an unidentified symbol.

View File

@ -13,7 +13,7 @@
#include "llvm/Support/Debug.h" #include "llvm/Support/Debug.h"
#include "llvm/Support/Path.h" #include "llvm/Support/Path.h"
#define DEBUG_TYPE "include-fixer" #define DEBUG_TYPE "clang-include-fixer"
namespace clang { namespace clang {
namespace include_fixer { namespace include_fixer {

View File

@ -366,8 +366,8 @@ int includeFixerMain(int argc, const char **argv) {
} }
// We leave an empty symbol range as we don't know the range of the symbol // We leave an empty symbol range as we don't know the range of the symbol
// being queried in this mode. include-fixer won't add namespace qualifiers // being queried in this mode. clang-include-fixer won't add namespace
// if the symbol range is empty, which also fits this case. // qualifiers if the symbol range is empty, which also fits this case.
IncludeFixerContext::QuerySymbolInfo Symbol; IncludeFixerContext::QuerySymbolInfo Symbol;
Symbol.RawIdentifier = QuerySymbol; Symbol.RawIdentifier = QuerySymbol;
auto Context = auto Context =
@ -383,9 +383,10 @@ int includeFixerMain(int argc, const char **argv) {
if (tool.run(&Factory) != 0) { if (tool.run(&Factory) != 0) {
// We suppress all Clang diagnostics (because they would be wrong, // We suppress all Clang diagnostics (because they would be wrong,
// include-fixer does custom recovery) but still want to give some feedback // clang-include-fixer does custom recovery) but still want to give some
// in case there was a compiler error we couldn't recover from. The most // feedback in case there was a compiler error we couldn't recover from.
// common case for this is a #include in the file that couldn't be found. // The most common case for this is a #include in the file that couldn't be
// found.
llvm::errs() << "Fatal compiler error occurred while parsing file!" llvm::errs() << "Fatal compiler error occurred while parsing file!"
" (incorrect include paths?)\n"; " (incorrect include paths?)\n";
return 1; return 1;

View File

@ -8,7 +8,7 @@
;; This package allows Emacs users to invoke the 'clang-include-fixer' within ;; This package allows Emacs users to invoke the 'clang-include-fixer' within
;; Emacs. 'clang-include-fixer' provides an automated way of adding #include ;; Emacs. 'clang-include-fixer' provides an automated way of adding #include
;; directives for missing symbols in one translation unit, see ;; directives for missing symbols in one translation unit, see
;; <http://clang.llvm.org/extra/include-fixer.html>. ;; <http://clang.llvm.org/extra/clang-include-fixer.html>.
;;; Code: ;;; Code:
@ -243,7 +243,7 @@ return nil. Buffer restrictions are ignored."
t)))))))))))) t))))))))))))
(defun clang-include-fixer--add-header (stdout) (defun clang-include-fixer--add-header (stdout)
"Analyse the result of include-fixer stored in STDOUT. "Analyse the result of clang-include-fixer stored in STDOUT.
Add a missing header if there is any. If there are multiple Add a missing header if there is any. If there are multiple
possible headers the user can select one of them to be included. possible headers the user can select one of them to be included.
Temporarily highlight the affected symbols. Asynchronously call Temporarily highlight the affected symbols. Asynchronously call
@ -317,7 +317,7 @@ They are replaced by the single element selected by the user."
(when overlays (when overlays
(goto-char (clang-include-fixer--closest-overlay overlays))) (goto-char (clang-include-fixer--closest-overlay overlays)))
(cl-flet ((header (info) (let-alist info .Header))) (cl-flet ((header (info) (let-alist info .Header)))
;; The header-infos is already sorted by include-fixer. ;; The header-infos is already sorted by clang-include-fixer.
(let* ((headers (mapcar #'header .HeaderInfos)) (let* ((headers (mapcar #'header .HeaderInfos))
(header (completing-read (header (completing-read
(clang-include-fixer--format-message (clang-include-fixer--format-message

View File

@ -2,12 +2,14 @@
# - Change 'binary' if clang-include-fixer is not on the path (see below). # - Change 'binary' if clang-include-fixer is not on the path (see below).
# - Add to your .vimrc: # - Add to your .vimrc:
# #
# noremap <leader>cf :pyf path/to/llvm/source/tools/clang/tools/extra/include-fixer/tool/clang-include-fixer.py<cr> # noremap <leader>cf :pyf path/to/llvm/source/tools/clang/tools/extra/clang-include-fixer/tool/clang-include-fixer.py<cr>
# #
# This enables clang-include-fixer for NORMAL and VISUAL mode. Change "<leader>cf" # This enables clang-include-fixer for NORMAL and VISUAL mode. Change
# to another binding if you need clang-include-fixer on a different key. # "<leader>cf" to another binding if you need clang-include-fixer on a
# different key.
# #
# To set up clang-include-fixer, see http://clang.llvm.org/extra/include-fixer.html # To set up clang-include-fixer, see
# http://clang.llvm.org/extra/clang-include-fixer.html
# #
# With this integration you can press the bound key and clang-include-fixer will # With this integration you can press the bound key and clang-include-fixer will
# be run on the current buffer. # be run on the current buffer.
@ -76,7 +78,7 @@ def GetUserSelection(message, headers, maximum_suggested_headers):
raise Exception() raise Exception()
except Exception: except Exception:
# Show a new prompt on invalid option instead of aborting so that users # Show a new prompt on invalid option instead of aborting so that users
# don't need to wait for another include-fixer run. # don't need to wait for another clang-include-fixer run.
print >> sys.stderr, "Invalid option:", res print >> sys.stderr, "Invalid option:", res
return GetUserSelection(message, headers, maximum_suggested_headers) return GetUserSelection(message, headers, maximum_suggested_headers)
return headers[idx - 1] return headers[idx - 1]
@ -170,7 +172,7 @@ def main():
print "The file is fine, no need to add a header." print "The file is fine, no need to add a header."
return return
symbol = query_symbol_infos[0]["RawIdentifier"] symbol = query_symbol_infos[0]["RawIdentifier"]
# The header_infos is already sorted by include-fixer. # The header_infos is already sorted by clang-include-fixer.
header_infos = include_fixer_context["HeaderInfos"] header_infos = include_fixer_context["HeaderInfos"]
# Deduplicate headers while keeping the order, so that the same header would # Deduplicate headers while keeping the order, so that the same header would
# not be suggested twice. # not be suggested twice.

View File

@ -765,7 +765,7 @@ void ClangMoveTool::removeDeclsInOldFiles() {
if (Context->Spec.OldDependOnNew && if (Context->Spec.OldDependOnNew &&
MakeAbsolutePath(SM, FilePath) == MakeAbsolutePath(SM, FilePath) ==
makeAbsolutePath(Context->Spec.OldHeader)) { makeAbsolutePath(Context->Spec.OldHeader)) {
// FIXME: Minimize the include path like include-fixer. // FIXME: Minimize the include path like clang-include-fixer.
std::string IncludeNewH = std::string IncludeNewH =
"#include \"" + Context->Spec.NewHeader + "\"\n"; "#include \"" + Context->Spec.NewHeader + "\"\n";
// This replacment for inserting header will be cleaned up at the end. // This replacment for inserting header will be cleaned up at the end.

View File

@ -198,7 +198,7 @@ def add_release_notes(module_path, module, check_name):
lines = f.readlines() lines = f.readlines()
lineMatcher = re.compile('Improvements to clang-tidy') lineMatcher = re.compile('Improvements to clang-tidy')
nextSectionMatcher = re.compile('Improvements to include-fixer') nextSectionMatcher = re.compile('Improvements to clang-include-fixer')
checkerMatcher = re.compile('- New :doc:`(.*)') checkerMatcher = re.compile('- New :doc:`(.*)')
print('Updating %s...' % filename) print('Updating %s...' % filename)

View File

@ -143,7 +143,7 @@ Improvements to clang-tidy
but either don't specify it or the clause is specified but with the kind but either don't specify it or the clause is specified but with the kind
other than ``none``, and suggests to use the ``default(none)`` clause. other than ``none``, and suggests to use the ``default(none)`` clause.
Improvements to include-fixer Improvements to clang-include-fixer
----------------------------- -----------------------------
The improvements are... The improvements are...

View File

@ -49,7 +49,7 @@ database for LLVM, any project built by CMake should follow similar steps.
$ ninja clang-include-fixer // build clang-include-fixer tool. $ ninja clang-include-fixer // build clang-include-fixer tool.
$ ls compile_commands.json # Make sure compile_commands.json exists. $ ls compile_commands.json # Make sure compile_commands.json exists.
compile_commands.json compile_commands.json
$ path/to/llvm/source/tools/clang/tools/extra/include-fixer/find-all-symbols/tool/run-find-all-symbols.py $ path/to/llvm/source/tools/clang/tools/extra/clang-include-fixer/find-all-symbols/tool/run-find-all-symbols.py
... wait as clang indexes the code base ... ... wait as clang indexes the code base ...
$ ln -s $PWD/find_all_symbols_db.yaml path/to/llvm/source/ # Link database into the source tree. $ ln -s $PWD/find_all_symbols_db.yaml path/to/llvm/source/ # Link database into the source tree.
$ ln -s $PWD/compile_commands.json path/to/llvm/source/ # Also link compilation database if it's not there already. $ ln -s $PWD/compile_commands.json path/to/llvm/source/ # Also link compilation database if it's not there already.
@ -64,7 +64,7 @@ following key binding to your ``.vimrc``:
.. code-block:: console .. code-block:: console
noremap <leader>cf :pyf path/to/llvm/source/tools/clang/tools/extra/include-fixer/tool/clang-include-fixer.py<cr> noremap <leader>cf :pyf path/to/llvm/source/tools/clang/tools/extra/clang-include-fixer/tool/clang-include-fixer.py<cr>
This enables `clang-include-fixer` for NORMAL and VISUAL mode. Change This enables `clang-include-fixer` for NORMAL and VISUAL mode. Change
`<leader>cf` to another binding if you need clang-include-fixer on a different `<leader>cf` to another binding if you need clang-include-fixer on a different
@ -118,7 +118,7 @@ in your ``.emacs``:
.. code-block:: console .. code-block:: console
(add-to-list 'load-path "path/to/llvm/source/tools/clang/tools/extra/include-fixer/tool/" (add-to-list 'load-path "path/to/llvm/source/tools/clang/tools/extra/clang-include-fixer/tool/"
(require 'clang-include-fixer) (require 'clang-include-fixer)
Within Emacs the tool can be invoked with the command Within Emacs the tool can be invoked with the command

View File

@ -752,7 +752,7 @@ INPUT = \
@abs_srcdir@/../clang-reorder-fields \ @abs_srcdir@/../clang-reorder-fields \
@abs_srcdir@/../clang-tidy \ @abs_srcdir@/../clang-tidy \
@abs_srcdir@/../clangd \ @abs_srcdir@/../clangd \
@abs_srcdir@/../include-fixer \ @abs_srcdir@/../clang-include-fixer \
@abs_srcdir@/../modularize \ @abs_srcdir@/../modularize \
@abs_srcdir@/../pp-trace \ @abs_srcdir@/../pp-trace \
@abs_srcdir@/../tool-template \ @abs_srcdir@/../tool-template \

View File

@ -16,7 +16,7 @@ Contents
:maxdepth: 2 :maxdepth: 2
clang-tidy/index clang-tidy/index
include-fixer clang-include-fixer
modularize modularize
pp-trace pp-trace
clang-rename clang-rename

View File

@ -65,7 +65,7 @@ Name: bar
Contexts: Contexts:
- ContextType: Namespace - ContextType: Namespace
ContextName: c ContextName: c
FilePath: test/include-fixer/baz.h FilePath: test/clang-include-fixer/baz.h
Type: Class Type: Class
Seen: 1 Seen: 1
Used: 0 Used: 0

View File

@ -0,0 +1,19 @@
// RUN: mkdir -p %T/clang-include-fixer/include
// RUN: mkdir -p %T/clang-include-fixer/symbols
// RUN: mkdir -p %T/clang-include-fixer/build
// RUN: mkdir -p %T/clang-include-fixer/src
// RUN: sed 's|test_dir|%/T/clang-include-fixer|g' %S/Inputs/database_template.json > %T/clang-include-fixer/build/compile_commands.json
// RUN: echo -e '#include "bar.h"\nb::a::bar f;' > %T/clang-include-fixer/src/bar.cpp
// RUN: echo 'namespace b { namespace a { class bar {}; } }' > %T/clang-include-fixer/include/bar.h
// RUN: cd %T/clang-include-fixer/build
// RUN: find-all-symbols -output-dir=%T/clang-include-fixer/symbols -p=. %T/clang-include-fixer/src/bar.cpp
// RUN: find-all-symbols -merge-dir=%T/clang-include-fixer/symbols %T/clang-include-fixer/build/find_all_symbols.yaml
// RUN: FileCheck -input-file=%T/clang-include-fixer/build/find_all_symbols.yaml -check-prefix=CHECK-YAML %s
//
// RUN: echo 'b::a::bar f;' > %T/clang-include-fixer/src/bar.cpp
// RUN: clang-include-fixer -db=yaml -input=%T/clang-include-fixer/build/find_all_symbols.yaml -minimize-paths=true -p=. %T/clang-include-fixer/src/bar.cpp
// RUN: FileCheck -input-file=%T/clang-include-fixer/src/bar.cpp %s
// CHECK-YAML: ..{{[/\\]}}include{{[/\\]}}bar.h
// CHECK: #include "bar.h"
// CHECK: b::a::bar f;

View File

@ -0,0 +1,13 @@
// REQUIRES: shell
// RUN: sed -e 's#//.*$##' %s > %t.cpp
// RUN: mkdir -p %T/clang-include-fixer/multiple-fixes
// RUN: echo 'foo f;' > %T/clang-include-fixer/multiple-fixes/foo.cpp
// RUN: echo 'bar b;' > %T/clang-include-fixer/multiple-fixes/bar.cpp
// RUN: clang-include-fixer -db=fixed -input='foo= "foo.h";bar= "bar.h"' %T/clang-include-fixer/multiple-fixes/*.cpp --
// RUN: FileCheck -input-file=%T/clang-include-fixer/multiple-fixes/bar.cpp %s -check-prefix=CHECK-BAR
// RUN: FileCheck -input-file=%T/clang-include-fixer/multiple-fixes/foo.cpp %s -check-prefix=CHECK-FOO
//
// CHECK-FOO: #include "foo.h"
// CHECK-FOO: foo f;
// CHECK-BAR: #include "bar.h"
// CHECK-BAR: bar b;

View File

@ -2,7 +2,7 @@
// RUN: clang-include-fixer -query-symbol bar -db=yaml -input=%S/Inputs/fake_yaml_db.yaml -output-headers %s -- | FileCheck %s // RUN: clang-include-fixer -query-symbol bar -db=yaml -input=%S/Inputs/fake_yaml_db.yaml -output-headers %s -- | FileCheck %s
// CHECK: "HeaderInfos": [ // CHECK: "HeaderInfos": [
// CHECK-NEXT: {"Header": "\"test/include-fixer/baz.h\"", // CHECK-NEXT: {"Header": "\"test/clang-include-fixer/baz.h\"",
// CHECK-NEXT: "QualifiedName": "c::bar"}, // CHECK-NEXT: "QualifiedName": "c::bar"},
// CHECK-NEXT: {"Header": "\"../include/bar.h\"", // CHECK-NEXT: {"Header": "\"../include/bar.h\"",
// CHECK-NEXT: "QualifiedName": "b::a::bar"}, // CHECK-NEXT: "QualifiedName": "b::a::bar"},

View File

@ -2,7 +2,7 @@
// RUN: clang-include-fixer -db=fuzzyYaml -input=%p/Inputs/fake_yaml_db.yaml %t.cpp -- // RUN: clang-include-fixer -db=fuzzyYaml -input=%p/Inputs/fake_yaml_db.yaml %t.cpp --
// RUN: FileCheck %s -input-file=%t.cpp // RUN: FileCheck %s -input-file=%t.cpp
// include-fixer will add the include, but doesn't complete the symbol. // clang-include-fixer will add the include, but doesn't complete the symbol.
// CHECK: #include "foobar.h" // CHECK: #include "foobar.h"
// CHECK: fba f; // CHECK: fba f;

View File

@ -1,19 +0,0 @@
// RUN: mkdir -p %T/include-fixer/include
// RUN: mkdir -p %T/include-fixer/symbols
// RUN: mkdir -p %T/include-fixer/build
// RUN: mkdir -p %T/include-fixer/src
// RUN: sed 's|test_dir|%/T/include-fixer|g' %S/Inputs/database_template.json > %T/include-fixer/build/compile_commands.json
// RUN: echo -e '#include "bar.h"\nb::a::bar f;' > %T/include-fixer/src/bar.cpp
// RUN: echo 'namespace b { namespace a { class bar {}; } }' > %T/include-fixer/include/bar.h
// RUN: cd %T/include-fixer/build
// RUN: find-all-symbols -output-dir=%T/include-fixer/symbols -p=. %T/include-fixer/src/bar.cpp
// RUN: find-all-symbols -merge-dir=%T/include-fixer/symbols %T/include-fixer/build/find_all_symbols.yaml
// RUN: FileCheck -input-file=%T/include-fixer/build/find_all_symbols.yaml -check-prefix=CHECK-YAML %s
//
// RUN: echo 'b::a::bar f;' > %T/include-fixer/src/bar.cpp
// RUN: clang-include-fixer -db=yaml -input=%T/include-fixer/build/find_all_symbols.yaml -minimize-paths=true -p=. %T/include-fixer/src/bar.cpp
// RUN: FileCheck -input-file=%T/include-fixer/src/bar.cpp %s
// CHECK-YAML: ..{{[/\\]}}include{{[/\\]}}bar.h
// CHECK: #include "bar.h"
// CHECK: b::a::bar f;

View File

@ -1,13 +0,0 @@
// REQUIRES: shell
// RUN: sed -e 's#//.*$##' %s > %t.cpp
// RUN: mkdir -p %T/include-fixer/multiple-fixes
// RUN: echo 'foo f;' > %T/include-fixer/multiple-fixes/foo.cpp
// RUN: echo 'bar b;' > %T/include-fixer/multiple-fixes/bar.cpp
// RUN: clang-include-fixer -db=fixed -input='foo= "foo.h";bar= "bar.h"' %T/include-fixer/multiple-fixes/*.cpp --
// RUN: FileCheck -input-file=%T/include-fixer/multiple-fixes/bar.cpp %s -check-prefix=CHECK-BAR
// RUN: FileCheck -input-file=%T/include-fixer/multiple-fixes/foo.cpp %s -check-prefix=CHECK-FOO
//
// CHECK-FOO: #include "foo.h"
// CHECK-FOO: foo f;
// CHECK-BAR: #include "bar.h"
// CHECK-BAR: bar b;

View File

@ -17,8 +17,8 @@ endif()
add_subdirectory(clang-apply-replacements) add_subdirectory(clang-apply-replacements)
add_subdirectory(clang-change-namespace) add_subdirectory(clang-change-namespace)
add_subdirectory(clang-doc) add_subdirectory(clang-doc)
add_subdirectory(clang-include-fixer)
add_subdirectory(clang-move) add_subdirectory(clang-move)
add_subdirectory(clang-query) add_subdirectory(clang-query)
add_subdirectory(clang-tidy) add_subdirectory(clang-tidy)
add_subdirectory(clangd) add_subdirectory(clangd)
add_subdirectory(include-fixer)

View File

@ -3,7 +3,7 @@ set(LLVM_LINK_COMPONENTS
) )
get_filename_component(INCLUDE_FIXER_SOURCE_DIR get_filename_component(INCLUDE_FIXER_SOURCE_DIR
${CMAKE_CURRENT_SOURCE_DIR}/../../include-fixer REALPATH) ${CMAKE_CURRENT_SOURCE_DIR}/../../clang-include-fixer REALPATH)
include_directories( include_directories(
${INCLUDE_FIXER_SOURCE_DIR} ${INCLUDE_FIXER_SOURCE_DIR}
) )

View File

@ -178,7 +178,7 @@ TEST(IncludeFixer, NestedName) {
EXPECT_EQ("#define FOO(x) a::##x\nint x = FOO(b::foo);\n", EXPECT_EQ("#define FOO(x) a::##x\nint x = FOO(b::foo);\n",
runIncludeFixer("#define FOO(x) a::##x\nint x = FOO(b::foo);\n")); runIncludeFixer("#define FOO(x) a::##x\nint x = FOO(b::foo);\n"));
// The empty namespace is cleaned up by clang-format after include-fixer // The empty namespace is cleaned up by clang-format after clang-include-fixer
// finishes. // finishes.
EXPECT_EQ("#include \"dir/otherdir/qux.h\"\n" EXPECT_EQ("#include \"dir/otherdir/qux.h\"\n"
"\nint a = a::b::foo(0);\n", "\nint a = a::b::foo(0);\n",
@ -227,7 +227,7 @@ TEST(IncludeFixer, IgnoreSymbolFromHeader) {
} }
// FIXME: add test cases for inserting and sorting multiple headers when // FIXME: add test cases for inserting and sorting multiple headers when
// include-fixer supports multiple headers insertion. // clang-include-fixer supports multiple headers insertion.
TEST(IncludeFixer, InsertAndSortSingleHeader) { TEST(IncludeFixer, InsertAndSortSingleHeader) {
// Insert one header. // Insert one header.
std::string Code = "#include \"a.h\"\n" std::string Code = "#include \"a.h\"\n"

View File

@ -3,7 +3,7 @@ set(LLVM_LINK_COMPONENTS
) )
get_filename_component(INCLUDE_FIXER_SOURCE_DIR get_filename_component(INCLUDE_FIXER_SOURCE_DIR
${CMAKE_CURRENT_SOURCE_DIR}/../../../include-fixer/find-all-symbols REALPATH) ${CMAKE_CURRENT_SOURCE_DIR}/../../../clang-include-fixer/find-all-symbols REALPATH)
include_directories( include_directories(
${INCLUDE_FIXER_SOURCE_DIR} ${INCLUDE_FIXER_SOURCE_DIR}
) )