1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-01 14:29:51 +00:00

Merge pull request #954 from TomHarte/stddefRedux

The FIRFilter interface depends upon size_t.
This commit is contained in:
Thomas Harte 2021-07-02 17:26:37 -04:00 committed by GitHub
commit d9231e5d4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 {