converted using statement to a typedef to allow header to work with c++98

This commit is contained in:
Mark Borgerding 2019-02-01 07:53:52 -05:00
parent 022e427e44
commit b9839d01f7

View File

@ -18,7 +18,7 @@ class kissfft
{
public:
using cpx_t = std::complex<scalar_t>;
typedef std::complex<scalar_t> cpx_t;
kissfft( const std::size_t nfft,
const bool inverse )