File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ template <typename T> class CsvOutput : public AudioOutput {
131
131
}
132
132
133
133
// / Starts the processing with the defined number of channels
134
- bool begin (AudioInfo info) {
134
+ bool begin (AudioInfo info) override {
135
135
return begin (info.channels );
136
136
}
137
137
@@ -151,7 +151,7 @@ template <typename T> class CsvOutput : public AudioOutput {
151
151
152
152
153
153
// / defines the number of channels
154
- virtual void setAudioInfo (AudioInfo info) {
154
+ virtual void setAudioInfo (AudioInfo info) override {
155
155
TRACEI ();
156
156
this ->is_active = true ;
157
157
info.logInfo ();
@@ -190,7 +190,7 @@ template <typename T> class CsvOutput : public AudioOutput {
190
190
return len;
191
191
}
192
192
193
- int availableForWrite () { return 1024 ; }
193
+ int availableForWrite () override { return 1024 ; }
194
194
195
195
protected:
196
196
T *data_ptr;
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ class BaseConverter {
26
26
public:
27
27
BaseConverter () = default ;
28
28
BaseConverter (BaseConverter const &) = delete ;
29
+ virtual ~BaseConverter () = default ;
30
+
29
31
BaseConverter& operator =(BaseConverter const &) = delete ;
30
32
31
33
virtual size_t convert (uint8_t *src, size_t size) = 0;
You can’t perform that action at this time.
0 commit comments