Adding 'typename' in two instances, where version 15 of Clang
still requires it. P0634R3, which made those 'typename' redundant,
is only supported starting Clang 16.
Signed-off-by: Ronen Friedman <rfriedma@redhat.com>
} 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);
}