diff options
author | Sage Weil <sage@redhat.com> | 2015-07-23 16:17:27 +0200 |
---|---|---|
committer | Sage Weil <sage@redhat.com> | 2015-08-07 16:16:04 +0200 |
commit | a208832cef444238215892eda8ccfe9824cefcd8 (patch) | |
tree | daaccc857b6907bbe1bb3f309bc84805cae3bbb6 /src/messages/MOSDSubOp.h | |
parent | hobject_t: typed MIN_* helpers (diff) | |
download | ceph-a208832cef444238215892eda8ccfe9824cefcd8.tar.xz ceph-a208832cef444238215892eda8ccfe9824cefcd8.zip |
explicitly specify comparator for all hobject_t maps and sets
This is necessary now that operator< is not defined.
Signed-off-by: Sage Weil <sage@redhat.com>
Diffstat (limited to 'src/messages/MOSDSubOp.h')
-rw-r--r-- | src/messages/MOSDSubOp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/messages/MOSDSubOp.h b/src/messages/MOSDSubOp.h index 544dfcfe6ae..f746568f95d 100644 --- a/src/messages/MOSDSubOp.h +++ b/src/messages/MOSDSubOp.h @@ -69,7 +69,7 @@ public: map<string,bufferlist> attrset; interval_set<uint64_t> data_subset; - map<hobject_t, interval_set<uint64_t> > clone_subsets; + map<hobject_t, interval_set<uint64_t>, hobject_t::BitwiseComparator> clone_subsets; bool first, complete; |