[include-fixer] Tweak: remove unintended const.

llvm-svn: 276096
This commit is contained in:
Haojian Wu 2016-07-20 09:00:22 +00:00
parent 9d450256d2
commit 20dba0586f
2 changed files with 2 additions and 2 deletions

View File

@ -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(

View File

@ -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 {