diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-07-08 00:20:15 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-01-28 02:01:57 +0100 |
| commit | b054a6fe8359d91ed6afd5a250abd766cfafa196 (patch) | |
| tree | 9259fe00b1f7fec6df0ae04d58896df61f1ea8ee /src/lib/dcp_encoder.h | |
| parent | d76a9783fcc97a8a833ae060f70b12c144994651 (diff) | |
Formatting, variable name tidying and some const correctness.
Diffstat (limited to 'src/lib/dcp_encoder.h')
| -rw-r--r-- | src/lib/dcp_encoder.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/dcp_encoder.h b/src/lib/dcp_encoder.h index a8043887e..771679a98 100644 --- a/src/lib/dcp_encoder.h +++ b/src/lib/dcp_encoder.h @@ -52,8 +52,9 @@ public: bool finishing () const override { return _finishing; } - void pause(void) override; - void resume(void) override; + + void pause() override; + void resume() override; private: |
