Skip to content

Commit 8a48567

Browse files
committed
Fix clang warnings
1 parent b918028 commit 8a48567

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Joiner.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -368,9 +368,9 @@ namespace kiwi
368368
newCandidates.reserve(bestScoreByState.size());
369369
for (auto& p : bestScoreByState)
370370
{
371-
newCandidates.emplace_back(move(candidates[p.second.second]));
371+
newCandidates.emplace_back(std::move(candidates[p.second.second]));
372372
}
373-
candidates = move(newCandidates);
373+
candidates = std::move(newCandidates);
374374
}
375375
}
376376
}

0 commit comments

Comments
 (0)