diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-05-07 08:07:05 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-05-07 08:07:05 +0200 |
| commit | 67901f7d46fdaf60d1781556a3a6a781ec5acd51 (patch) | |
| tree | 2e0c0354e6cdd68e6024d593f60c391a6ef846f4 /src/lib/subtitle_encoder.h | |
| parent | 8a68631f7095cd716aae3f7053d819668555f557 (diff) | |
Missing override statements.v2.15.141
Diffstat (limited to 'src/lib/subtitle_encoder.h')
| -rw-r--r-- | src/lib/subtitle_encoder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/subtitle_encoder.h b/src/lib/subtitle_encoder.h index a88c6c5bf..b43cc2683 100644 --- a/src/lib/subtitle_encoder.h +++ b/src/lib/subtitle_encoder.h @@ -45,9 +45,9 @@ public: void go () override; /** @return the number of frames that are done */ - Frame frames_done () const; + Frame frames_done () const override; - bool finishing () const { + bool finishing () const override { return false; } |
