]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/seastar/include/seastar/core/deleter.hh
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / seastar / include / seastar / core / deleter.hh
index b637336e1a1e935bc726e8e4d5a2dfdf8d2ae3a6..991199dc9d285cd5db13b9bdb4fc838caf84c0a2 100644 (file)
@@ -61,7 +61,7 @@ public:
     deleter(deleter&& x) noexcept : _impl(x._impl) { x._impl = nullptr; }
     /// \cond internal
     explicit deleter(impl* i) noexcept : _impl(i) {}
-    deleter(raw_object_tag tag, void* object) noexcept
+    deleter(raw_object_tag, void* object) noexcept
         : _impl(from_raw_object(object)) {}
     /// \endcond
     /// Destroys the deleter and carries out the encapsulated action.