summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-01-19 18:47:02 +0100
committerCarl Hetherington <cth@carlh.net>2025-01-19 18:47:02 +0100
commit77753c08c5d86c898e7821029b1baa077e896ad7 (patch)
tree26022c2e2f75b6d531e46292be9e74b73d6c1a2a /src
parent17d9f8ba001eb14c3bbaf5cc5ebc37c5c0e1edb9 (diff)
const correctness.
Diffstat (limited to 'src')
-rw-r--r--src/lib/find_missing.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/find_missing.cc b/src/lib/find_missing.cc
index 199ffcc19..c023d7db4 100644
--- a/src/lib/find_missing.cc
+++ b/src/lib/find_missing.cc
@@ -30,7 +30,7 @@ using std::shared_ptr;
using std::vector;
-typedef map<shared_ptr<Content>, vector<boost::filesystem::path>> Replacements;
+typedef map<shared_ptr<const Content>, vector<boost::filesystem::path>> Replacements;
static