summaryrefslogtreecommitdiff
path: root/src/lib/encoder.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-07-08 00:20:15 +0200
committerCarl Hetherington <cth@carlh.net>2023-11-29 21:19:55 +0100
commit240a2e44f7ac22d43137e9d149013a8ba8a5b1d0 (patch)
treef1d5729b6468b1893d0ae01f001b91d2a43cf1d7 /src/lib/encoder.h
parent308ca5ab6641d3e460a12bd42e42e196c2150ff9 (diff)
Formatting, variable name tidying and some const correctness.
Diffstat (limited to 'src/lib/encoder.h')
-rw-r--r--src/lib/encoder.h4
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;