]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
common: Update entity_name.h to work without using namespace
authorAdam C. Emerson <aemerson@redhat.com>
Fri, 29 Mar 2019 01:38:06 +0000 (21:38 -0400)
committerAdam C. Emerson <aemerson@redhat.com>
Fri, 29 Mar 2019 14:30:38 +0000 (10:30 -0400)
Signed-off-by: Adam C. Emerson <aemerson@redhat.com>
src/common/entity_name.h

index be194ed7bdc1b35bcbac19cfcbe5552b5091e204..1dd56f66d740af8d4c690dbec1aef26e9a01eb98 100644 (file)
  */
 struct EntityName
 {
-  void encode(bufferlist& bl) const {
+  void encode(ceph::buffer::list& bl) const {
     using ceph::encode;
     encode(type, bl);
     encode(id, bl);
   }
-  void decode(bufferlist::const_iterator& bl) {
+  void decode(ceph::buffer::list::const_iterator& bl) {
     using ceph::decode;
     uint32_t type_;
     std::string id_;