summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-07-21 23:37:45 +0200
committerCarl Hetherington <cth@carlh.net>2025-07-21 23:37:45 +0200
commitd932b6c3dde3481af9464a0796dd7230f4a977e2 (patch)
treef50819d4fc704a1a4afff9f86abdc6d4206dd5f0
parentb95ff314543dd1141c789bc61a3f81306a07bfc9 (diff)
Cleanup: const correctness.
-rw-r--r--src/lib/image_proxy.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/image_proxy.h b/src/lib/image_proxy.h
index 0a94b3615..36ef2feee 100644
--- a/src/lib/image_proxy.h
+++ b/src/lib/image_proxy.h
@@ -76,7 +76,7 @@ public:
, error(false)
{}
- Result(std::shared_ptr<Image> image_, int log2_scaling_, bool error_)
+ Result(std::shared_ptr<const Image> image_, int log2_scaling_, bool error_)
: image(image_)
, log2_scaling(log2_scaling_)
, error(error_)