I believe, after some searching, that this is a straightforward
application of rule 14.1.12, C++14.
Fixes compilation w/clang-5.
Signed-off-by: Matt Benjamin <mbenjamin@redhat.com>
return r;
}
-template <int LogLevelV = 30>
+template <int LogLevelV>
void BlueStore::_dump_onode(const OnodeRef& o)
{
if (!cct->_conf->subsys.should_gather<ceph_subsys_bluestore, LogLevelV>())
_dump_extent_map<LogLevelV>(o->extent_map);
}
-template <int LogLevelV = 30>
+template <int LogLevelV>
void BlueStore::_dump_extent_map(ExtentMap &em)
{
uint64_t pos = 0;
}
}
-template <int LogLevelV = 30>
+template <int LogLevelV>
void BlueStore::_dump_transaction(Transaction *t)
{
dout(LogLevelV) << __func__ << " transaction dump:\n";