Add buffer_t<float> type alias.

This commit is contained in:
Jared Boone 2016-01-11 16:10:48 -08:00
parent 5e917ebb2c
commit b9f124850b

View File

@ -31,5 +31,6 @@ using buffer_c8_t = buffer_t<complex8_t>;
using buffer_c16_t = buffer_t<complex16_t>;
using buffer_s16_t = buffer_t<int16_t>;
using buffer_c32_t = buffer_t<complex32_t>;
using buffer_f32_t = buffer_t<float>;
#endif/*__DSP_TYPES_H__*/