mirror of
https://github.com/mborgerding/kissfft.git
synced 2025-05-27 21:20:27 -04:00
converted using statement to a typedef to allow header to work with c++98
This commit is contained in:
parent
022e427e44
commit
b9839d01f7
@ -18,7 +18,7 @@ class kissfft
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
using cpx_t = std::complex<scalar_t>;
|
typedef std::complex<scalar_t> cpx_t;
|
||||||
|
|
||||||
kissfft( const std::size_t nfft,
|
kissfft( const std::size_t nfft,
|
||||||
const bool inverse )
|
const bool inverse )
|
||||||
|
Loading…
Reference in New Issue
Block a user