summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/include-fixer/YamlSymbolIndex.h
diff options
context:
space:
mode:
Diffstat (limited to 'clang-tools-extra/include-fixer/YamlSymbolIndex.h')
-rw-r--r--clang-tools-extra/include-fixer/YamlSymbolIndex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/clang-tools-extra/include-fixer/YamlSymbolIndex.h b/clang-tools-extra/include-fixer/YamlSymbolIndex.h
index 57c04dacdeb..d5d699a2276 100644
--- a/clang-tools-extra/include-fixer/YamlSymbolIndex.h
+++ b/clang-tools-extra/include-fixer/YamlSymbolIndex.h
@@ -29,15 +29,15 @@ public:
static llvm::ErrorOr<std::unique_ptr<YamlSymbolIndex>>
createFromDirectory(llvm::StringRef Directory, llvm::StringRef Name);
- std::vector<clang::find_all_symbols::SymbolInfo>
+ std::vector<find_all_symbols::SymbolAndSignals>
search(llvm::StringRef Identifier) override;
private:
explicit YamlSymbolIndex(
- std::vector<clang::find_all_symbols::SymbolInfo> Symbols)
+ std::vector<find_all_symbols::SymbolAndSignals> Symbols)
: Symbols(std::move(Symbols)) {}
- std::vector<clang::find_all_symbols::SymbolInfo> Symbols;
+ std::vector<find_all_symbols::SymbolAndSignals> Symbols;
};
} // namespace include_fixer
OpenPOWER on IntegriCloud