From 4d75186c39c1ea89c97dd86240c53453bf8be159 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Sun, 26 Oct 2025 16:34:32 +0100 Subject: [PATCH] refactored --- delay/{dsp_ringbuffer.hpp => ringbuffer.hpp} | 0 delay/tests/Makefile | 2 +- delay/tests/test_ringbuffer.cpp | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename delay/{dsp_ringbuffer.hpp => ringbuffer.hpp} (100%) diff --git a/delay/dsp_ringbuffer.hpp b/delay/ringbuffer.hpp similarity index 100% rename from delay/dsp_ringbuffer.hpp rename to delay/ringbuffer.hpp diff --git a/delay/tests/Makefile b/delay/tests/Makefile index 31f80e6..9a918b0 100644 --- a/delay/tests/Makefile +++ b/delay/tests/Makefile @@ -11,7 +11,7 @@ TARGET ?= $(NAME) CXXFLAGS += -std=c++11 -INCLUDES += -I $(realpath .) -I $(realpath ../public) +INCLUDES += -I $(realpath .) -I $(realpath ../../) CXX_SRCS := test_ringbuffer.cpp diff --git a/delay/tests/test_ringbuffer.cpp b/delay/tests/test_ringbuffer.cpp index 8fc7b69..3d19d01 100644 --- a/delay/tests/test_ringbuffer.cpp +++ b/delay/tests/test_ringbuffer.cpp @@ -1,4 +1,4 @@ -#include "../public/dsp_ringbuffer.hpp" +#include #include