]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/crimson/osd/osd_meta.h
import quincy beta 17.1.0
[ceph.git] / ceph / src / crimson / osd / osd_meta.h
index 84157208754d192f490b9f7ede85f9a1fd91140c..df1444180885184cfd740952753caa5b38530508 100644 (file)
@@ -23,12 +23,12 @@ namespace crimson::os {
 class OSDMeta {
   template<typename T> using Ref = boost::intrusive_ptr<T>;
 
-  crimson::os::FuturizedStore* store;
+  crimson::os::FuturizedStore& store;
   Ref<crimson::os::FuturizedCollection> coll;
 
 public:
   OSDMeta(Ref<crimson::os::FuturizedCollection> coll,
-          crimson::os::FuturizedStore* store)
+          crimson::os::FuturizedStore& store)
     : store{store}, coll{coll}
   {}