Merge pull request #54578 from ronen-fr/wip-rf-dedup-clang

tools: modify ceph_dedup_tool to maintain Clang 15 compatibility

Reviewed-by: Radoslaw Zarzynski <rzarzyns@redhat.com>
Reviewed-by: Samuel Just <sjust@redhat.com>
This commit is contained in:
Ronen Friedman 2023-11-29 15:39:37 +02:00 committed by GitHub
commit 94e40c80f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -581,9 +581,9 @@ public:
} entry_into = NONE;
/// Valid iterator into map for UNDER|OVER, default for NONE
map_t::iterator iter;
typename map_t::iterator iter;
entry_t(entry_into_t entry_into, map_t::iterator iter) :
entry_t(entry_into_t entry_into, typename map_t::iterator iter) :
entry_into(entry_into), iter(iter) {
ceph_assert(entry_into != NONE);
}