From 430feeed7c10b0718b8217cfd221c4648f17c59a Mon Sep 17 00:00:00 2001 From: kevin Date: Sun, 8 Jan 2023 14:12:45 -0500 Subject: [PATCH] cwDspType.h : Set fd_real_t to float. --- cwDspTypes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cwDspTypes.h b/cwDspTypes.h index 1deff5b..9a03f69 100644 --- a/cwDspTypes.h +++ b/cwDspTypes.h @@ -7,8 +7,8 @@ namespace cw { typedef float real_t; typedef float sample_t; - typedef double fd_real_t; - typedef double srate_t; + typedef float fd_real_t; + typedef float srate_t; } } #endif