mirror of
https://github.com/badaix/snapcast.git
synced 2025-06-04 11:51:44 +02:00
modernize with clang-tidy
This commit is contained in:
parent
e0d25d02ab
commit
8b231c7cc6
54 changed files with 182 additions and 196 deletions
|
@ -37,10 +37,10 @@ class ProcessStream : public PcmStream
|
|||
public:
|
||||
/// ctor. Encoded PCM data is passed to the PipeListener
|
||||
ProcessStream(PcmListener* pcmListener, const StreamUri& uri);
|
||||
virtual ~ProcessStream();
|
||||
~ProcessStream() override;
|
||||
|
||||
virtual void start();
|
||||
virtual void stop();
|
||||
void start() override;
|
||||
void stop() override;
|
||||
|
||||
protected:
|
||||
std::string exe_;
|
||||
|
@ -50,7 +50,7 @@ protected:
|
|||
std::thread stderrReaderThread_;
|
||||
bool logStderr_;
|
||||
|
||||
virtual void worker();
|
||||
void worker() override;
|
||||
virtual void stderrReader();
|
||||
virtual void onStderrMsg(const char* buffer, size_t n);
|
||||
virtual void initExeAndPath(const std::string& filename);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue