diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-07-08 00:20:15 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-10-18 13:46:37 +0200 |
| commit | 2d724c547843aff1345fd762b1075249676dcb3e (patch) | |
| tree | f771c078ee95a1327adb9a26751a727316623060 /src/lib/encoder.h | |
| parent | bf770122a39965599cdd23e876dfd8e7db64a639 (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; |
