Skip to content

Commit e785647

Browse files
authored
Merge pull request #162 from rururia-kyopro/fix-unqualified-call-warning
Fix warning: unqualified call to 'std::move' on clang 16.
2 parents c70fcae + b64a644 commit e785647

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

atcoder/convolution.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ std::vector<T> convolution(const std::vector<T>& a, const std::vector<T>& b) {
258258
for (int i = 0; i < m; i++) {
259259
b2[i] = mint(b[i]);
260260
}
261-
auto c2 = convolution(move(a2), move(b2));
261+
auto c2 = convolution(std::move(a2), std::move(b2));
262262
std::vector<T> c(n + m - 1);
263263
for (int i = 0; i < n + m - 1; i++) {
264264
c[i] = c2[i].val();

0 commit comments

Comments
 (0)