Clang complains:
```
/home/jenkins/workspace/ceph-master-compile/src/tools/cephfs_mirror/ClusterWatcher.cc:175:19: error: cannot use parentheses when declaring variable with deduced class template specialization type
std::scoped_lock(m_lock);
^
```
fixes: https://github.com/ceph/ceph/pull/42751
Signed-off-by: Willem Jan Withagen <wjw@digiware.nl>
}
}
- std::scoped_lock(m_lock);
+ std::scoped_lock locker(m_lock);
if (!m_stopping) {
m_monc->sub_got("fsmap", fsmap.get_epoch());
} // else we have already done a sub_unwant()