diff options
| author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2025-03-21 17:27:22 +0100 | 
|---|---|---|
| committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2025-03-21 17:27:22 +0100 | 
| commit | ae8179cd49ea626b4a9dd14868008c86dd1d1609 (patch) | |
| tree | f09220b2791ddd371273ad41e47d679abe520a44 | |
| parent | 31115439d68bacaecc095a075ae34293123662e9 (diff) | |
| download | dabmod-ae8179cd49ea626b4a9dd14868008c86dd1d1609.tar.gz dabmod-ae8179cd49ea626b4a9dd14868008c86dd1d1609.tar.bz2 dabmod-ae8179cd49ea626b4a9dd14868008c86dd1d1609.zip | |
Add missing include in Buffer.h
| -rw-r--r-- | src/Buffer.h | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/Buffer.h b/src/Buffer.h index 2c2a65e..a8130ed 100644 --- a/src/Buffer.h +++ b/src/Buffer.h @@ -34,11 +34,12 @@  #include <vector>  #include <memory>  #include <complex> +#include <cstdint>  #include "fpm/fixed.hpp"  typedef std::complex<float> complexf; -using fixed_16 = fpm::fixed<std::int16_t, std::int32_t, 14>; +using fixed_16 = fpm::fixed<int16_t, int32_t, 14>;  typedef std::complex<fixed_16> complexfix;  typedef std::complex<fpm::fixed_16_16> complexfix_wide; | 
