Removed logging from the DSP lib

This commit is contained in:
AlexandreRouma
2023-03-09 08:56:48 +01:00
parent 007761a027
commit 5f0858bab2
4 changed files with 2 additions and 7 deletions

View File

@ -5,7 +5,7 @@
#include "../math/hz_to_rads.h"
namespace dsp::mod {
class Quadrature : Processor<float, complex_t> {
class Quadrature : public Processor<float, complex_t> {
using base_type = Processor<float, complex_t>;
public:
Quadrature() {}