Skip to content

Commit b64a644

Browse files
Fix warning: unqualified call to 'std::move' on clang 16.
1 parent c70fcae commit b64a644

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)