]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/messages/MCommandReply.h
update sources to v12.2.5
[ceph.git] / ceph / src / messages / MCommandReply.h
index 9bb803dd5793ec5cddd70b20fc8b88ccabc4e061..c5d93d0ef7c67d411afeaacaa4b480c213128ade 100644 (file)
@@ -15,6 +15,8 @@
 #ifndef CEPH_MCOMMANDREPLY_H
 #define CEPH_MCOMMANDREPLY_H
 
+#include <boost/utility/string_view.hpp>
+
 #include "msg/Message.h"
 #include "MCommand.h"
 
@@ -29,7 +31,7 @@ class MCommandReply : public Message {
     : Message(MSG_COMMAND_REPLY), r(_r) {
     header.tid = m->get_tid();
   }
-  MCommandReply(int _r, string s)
+  MCommandReply(int _r, boost::string_view s)
     : Message(MSG_COMMAND_REPLY),
       r(_r), rs(s) { }
 private: