1
0

fix: fix gcc compile issue

This commit is contained in:
2025-12-16 22:04:01 +08:00
parent e864b0115e
commit fece224ec5
4 changed files with 23 additions and 20 deletions

View File

@@ -11,7 +11,7 @@ namespace yyccbench::carton::fft {
using TIndex = size_t;
using TFloat = float;
using TComplex = std::complex<TFloat>;
template<size_t N>
template<TIndex N>
using TFft = FFT::Fft<TIndex, TFloat, N>;
constexpr TIndex FFT_POINTS = 1024u;