diff options
author | Sage Weil <sage@newdream.net> | 2010-04-28 22:45:55 +0200 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-04-28 22:45:55 +0200 |
commit | b8cca8f34b40bfc8cca25ba59edb9d9d6cf68605 (patch) | |
tree | d619631358bb969c4a36648e141e21e5822f3bca /src/messages/MMonSubscribe.h | |
parent | mds: fix snaprealm split on capless inode (diff) | |
download | ceph-b8cca8f34b40bfc8cca25ba59edb9d9d6cf68605.tar.xz ceph-b8cca8f34b40bfc8cca25ba59edb9d9d6cf68605.zip |
replace nstring with std::string
Diffstat (limited to 'src/messages/MMonSubscribe.h')
-rw-r--r-- | src/messages/MMonSubscribe.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/messages/MMonSubscribe.h b/src/messages/MMonSubscribe.h index ee7901c2e27..702e17f6b13 100644 --- a/src/messages/MMonSubscribe.h +++ b/src/messages/MMonSubscribe.h @@ -18,7 +18,7 @@ #include "msg/Message.h" struct MMonSubscribe : public Message { - map<nstring, ceph_mon_subscribe_item> what; + map<string, ceph_mon_subscribe_item> what; MMonSubscribe() : Message(CEPH_MSG_MON_SUBSCRIBE) {} private: |