Skip to content

Commit c46b81a

Browse files
committed
Compile error for missing end
1 parent c141420 commit c46b81a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/AudioTools/AudioStreams.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ class AudioStreamWrapper : public AudioStream {
7878
public:
7979
AudioStreamWrapper(Stream &s) { p_stream = &s; }
8080

81+
virtual bool begin(){return true;}
82+
virtual void end(){}
83+
8184
virtual size_t readBytes(uint8_t *buffer, size_t length) {
8285
return p_stream->readBytes(buffer, length);
8386
}

0 commit comments

Comments
 (0)