From bcadb36232cd5dca92d20fda334f367884352ca7 Mon Sep 17 00:00:00 2001 From: AlexandreRouma Date: Fri, 26 Jul 2024 23:55:26 +0200 Subject: [PATCH] fix include issues in dsp library --- core/src/dsp/buffer/buffer.h | 1 + core/src/dsp/taps/tap.h | 1 + 2 files changed, 2 insertions(+) diff --git a/core/src/dsp/buffer/buffer.h b/core/src/dsp/buffer/buffer.h index 192eb317..e2929839 100644 --- a/core/src/dsp/buffer/buffer.h +++ b/core/src/dsp/buffer/buffer.h @@ -1,5 +1,6 @@ #pragma once #include +#include namespace dsp::buffer { template diff --git a/core/src/dsp/taps/tap.h b/core/src/dsp/taps/tap.h index b6e6c7a5..fe4b9a64 100644 --- a/core/src/dsp/taps/tap.h +++ b/core/src/dsp/taps/tap.h @@ -1,5 +1,6 @@ #pragma once #include +#include "../buffer/buffer.h" namespace dsp { template