We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 346296b commit 84657b2Copy full SHA for 84657b2
weilycoder/poly/fft_utility.hpp
@@ -38,7 +38,7 @@ template <typename T> void fft_change(std::vector<T> &a) {
38
if (i & 1)
39
rev[i] |= n >> 1;
40
if (i < rev[i])
41
- swap(a[i], a[rev[i]]);
+ std::swap(a[i], a[rev[i]]);
42
}
43
44
} // namespace weilycoder
0 commit comments