Skip to content

Commit db08263

Browse files
authored
Merge pull request #118 from atcoder/patch/issue117
fix #117: remove unnecesarry move
2 parents 53a0208 + 827435c commit db08263

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
@@ -136,7 +136,7 @@ std::vector<mint> convolution_fft(std::vector<mint> a, std::vector<mint> b) {
136136
a.resize(n + m - 1);
137137
mint iz = mint(z).inv();
138138
for (int i = 0; i < n + m - 1; i++) a[i] *= iz;
139-
return std::move(a);
139+
return a;
140140
}
141141

142142
} // namespace internal

0 commit comments

Comments
 (0)