Skip to content

Commit

Permalink
Merge pull request #162 from rururia-kyopro/fix-unqualified-call-warning
Browse files Browse the repository at this point in the history
Fix warning: unqualified call to 'std::move' on clang 16.
  • Loading branch information
yosupo06 authored Apr 11, 2023
2 parents c70fcae + b64a644 commit e785647
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atcoder/convolution.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ std::vector<T> convolution(const std::vector<T>& a, const std::vector<T>& b) {
for (int i = 0; i < m; i++) {
b2[i] = mint(b[i]);
}
auto c2 = convolution(move(a2), move(b2));
auto c2 = convolution(std::move(a2), std::move(b2));
std::vector<T> c(n + m - 1);
for (int i = 0; i < n + m - 1; i++) {
c[i] = c2[i].val();
Expand Down

0 comments on commit e785647

Please sign in to comment.