Skip to content

Commit

Permalink
Fix clang warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
bab2min committed Oct 3, 2024
1 parent b918028 commit 8a48567
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Joiner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -368,9 +368,9 @@ namespace kiwi
newCandidates.reserve(bestScoreByState.size());
for (auto& p : bestScoreByState)
{
newCandidates.emplace_back(move(candidates[p.second.second]));
newCandidates.emplace_back(std::move(candidates[p.second.second]));
}
candidates = move(newCandidates);
candidates = std::move(newCandidates);
}
}
}
Expand Down

0 comments on commit 8a48567

Please sign in to comment.