diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-05-24 23:46:35 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-05-25 21:35:12 +0200 |
| commit | fb82d2523dd0663478450016784f4ef40f1f1590 (patch) | |
| tree | 05732361a0d828b3b88c9d01d3eb31fc79d9b8a4 /src/lib/image.h | |
| parent | cc0f518888dcb750018458d784cc844aef478854 (diff) | |
const-correctness tweak.
Diffstat (limited to 'src/lib/image.h')
| -rw-r--r-- | src/lib/image.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/image.h b/src/lib/image.h index 7edea2186..2ef7d0797 100644 --- a/src/lib/image.h +++ b/src/lib/image.h @@ -41,7 +41,7 @@ class Image : public std::enable_shared_from_this<Image> { public: Image (AVPixelFormat p, dcp::Size s, bool aligned); - explicit Image (AVFrame *); + explicit Image (AVFrame const *); explicit Image (Image const &); Image (std::shared_ptr<const Image>, bool); Image& operator= (Image const &); |
