Skip to content

Commit

Permalink
Merge pull request #169 from chaoticgd/codacy
Browse files Browse the repository at this point in the history
Make codacy stop complaining
  • Loading branch information
chaoticgd authored Feb 3, 2024
2 parents e885679 + 51f08e1 commit cd2559f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ccc/symbol_database.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ template <typename SymbolType>
Result<SymbolType*> SymbolList<SymbolType>::create_symbol(
std::string name, SymbolSourceHandle source, const Module* module_symbol)
{
return create_symbol(name, Address(), source, module_symbol);
return create_symbol(std::move(name), Address(), source, module_symbol);
}

template <typename SymbolType>
Expand Down

0 comments on commit cd2559f

Please sign in to comment.