1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-08 10:52:58 +00:00

The FIRFilter interface depends upon size_t.

This commit is contained in:
Thomas Harte 2021-07-02 17:21:53 -04:00
parent 32e144115d
commit b7aa1a1c84
2 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,6 @@
#include "FIRFilter.hpp"
#include <cmath>
#include <cstddef>
#ifndef M_PI
#define M_PI 3.1415926f

View File

@ -17,6 +17,7 @@
#define USE_ACCELERATE
#endif
#include <cstddef>
#include <vector>
namespace SignalProcessing {