diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-07-08 00:20:15 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-12-16 02:07:37 +0100 |
| commit | 3f6a9b5e51ec39a66f61705278cbd8995a32b052 (patch) | |
| tree | 3583f5aab13954f25676c5f307efcee8c045e947 /src/lib/encoder.h | |
| parent | 6e848294b6516f056a052b37c8bef08c53dcdece (diff) | |
Formatting, variable name tidying and some const correctness.
Diffstat (limited to 'src/lib/encoder.h')
| -rw-r--r-- | src/lib/encoder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/encoder.h b/src/lib/encoder.h index f921fcb51..aeaf7f620 100644 --- a/src/lib/encoder.h +++ b/src/lib/encoder.h @@ -58,8 +58,8 @@ public: /** @return the number of frames that are done */ virtual Frame frames_done () const = 0; virtual bool finishing () const = 0; - virtual void pause(void) {} - virtual void resume(void) {} + virtual void pause() {} + virtual void resume() {} protected: std::shared_ptr<const Film> _film; |
