diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-06-26 01:18:06 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-06-27 00:06:51 +0200 |
| commit | 868ee4db539fe07542699836b76d5e51892b39ed (patch) | |
| tree | cb525b90a6ad1d58991b1e77009d4c43437dfc4b /src | |
| parent | 96e1c1e817887ebf51d7f825306b26e8abe2f717 (diff) | |
Cleanup: const.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dcp.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -175,7 +175,7 @@ DCP::read (vector<dcp::VerificationNote>* notes, bool ignore_incorrect_picture_m auto ids_and_paths = _asset_map->asset_ids_and_paths(); for (auto i: ids_and_paths) { - auto path = i.second; + auto const path = i.second; if (path == _directory) { /* I can't see how this is valid, but it's |
