Skip to content

Commit

Permalink
osd: use ceph scoped shared_ptr
Browse files Browse the repository at this point in the history
Signed-off-by: Noah Watkins <[email protected]>
  • Loading branch information
dotnwat committed Feb 21, 2014
1 parent 6c20728 commit 5373ee2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/osd/ECUtil.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include <map>
#include <set>

#include <memory>
#include "include/memory.h"
#include "erasure-code/ErasureCodeInterface.h"
#include "include/buffer.h"
#include "include/assert.h"
Expand Down Expand Up @@ -144,7 +144,7 @@ class HashInfo {
return total_chunk_size;
}
};
typedef std::tr1::shared_ptr<HashInfo> HashInfoRef;
typedef ceph::shared_ptr<HashInfo> HashInfoRef;

bool is_hinfo_key_string(const string &key);
const string &get_hinfo_key();
Expand Down

0 comments on commit 5373ee2

Please sign in to comment.