forked from OSchip/llvm-project
[include-fixer] Tweak: remove unintended const.
llvm-svn: 276096
This commit is contained in:
parent
9d450256d2
commit
20dba0586f
|
@ -76,7 +76,7 @@ std::string createQualifiedNameForReplacement(
|
|||
|
||||
IncludeFixerContext::IncludeFixerContext(
|
||||
const QuerySymbolInfo &QuerySymbol,
|
||||
const std::vector<find_all_symbols::SymbolInfo> Symbols)
|
||||
std::vector<find_all_symbols::SymbolInfo> Symbols)
|
||||
: MatchedSymbols(std::move(Symbols)), QuerySymbol(QuerySymbol) {
|
||||
for (const auto &Symbol : MatchedSymbols) {
|
||||
HeaderInfos.push_back(
|
||||
|
|
|
@ -47,7 +47,7 @@ public:
|
|||
|
||||
IncludeFixerContext() = default;
|
||||
IncludeFixerContext(const QuerySymbolInfo &QuerySymbol,
|
||||
const std::vector<find_all_symbols::SymbolInfo> Symbols);
|
||||
std::vector<find_all_symbols::SymbolInfo> Symbols);
|
||||
|
||||
/// \brief Get symbol name.
|
||||
llvm::StringRef getSymbolIdentifier() const {
|
||||
|
|
Loading…
Reference in New Issue