From b9839d01f76a681b9c8cfa3474fe7d84bc7ad28a Mon Sep 17 00:00:00 2001 From: Mark Borgerding <(none)> Date: Fri, 1 Feb 2019 07:53:52 -0500 Subject: [PATCH] converted using statement to a typedef to allow header to work with c++98 --- kissfft.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kissfft.hh b/kissfft.hh index e69b09a..0c7927b 100644 --- a/kissfft.hh +++ b/kissfft.hh @@ -18,7 +18,7 @@ class kissfft { public: - using cpx_t = std::complex; + typedef std::complex cpx_t; kissfft( const std::size_t nfft, const bool inverse )