diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-01-02 20:56:04 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-01-02 20:56:04 +0000 |
| commit | e7adac0f25e0d2a38be56e4477ed78b8b34b8b34 (patch) | |
| tree | e683ff9b21e767ab2985d3a5e92009b8378a6ae1 /src/lib/decoder.h | |
| parent | 76473252889949a02fa633daf2d40547142281ed (diff) | |
No need for position() to be virtual.
Diffstat (limited to 'src/lib/decoder.h')
| -rw-r--r-- | src/lib/decoder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/decoder.h b/src/lib/decoder.h index 8b901f70c..d87ff610a 100644 --- a/src/lib/decoder.h +++ b/src/lib/decoder.h @@ -53,7 +53,7 @@ public: virtual bool pass () = 0; virtual void seek (ContentTime time, bool accurate); - virtual ContentTime position () const; + ContentTime position () const; }; #endif |
