- use std::vector

- removed views
This commit is contained in:
2025-11-04 20:26:21 +01:00
parent 0adfa715d4
commit 179a65c976
6 changed files with 5 additions and 191 deletions
-6
View File
@@ -26,15 +26,9 @@
#ifndef DSP_TYPES_HPP
#define DSP_TYPES_HPP
#include <vector>
namespace dsp {
template<typename T, size_t SIZE=1024>
class vector : public std::vector<T>
{
};
}