Skip to content

Commit 640ef31

Browse files
committed
Redundant cvector::
1 parent e908de2 commit 640ef31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cp-algo/math/fft.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ namespace cp_algo::math::fft {
7979
template<class pt = point>
8080
static pt root(size_t n, size_t k) {
8181
if(n < pre_roots) {
82-
return cvector::roots.get<pt>(n + k);
82+
return roots.get<pt>(n + k);
8383
} else {
8484
auto arg = std::numbers::pi / n;
8585
if constexpr(std::is_same_v<pt, point>) {

0 commit comments

Comments
 (0)