Move SharingPtr.h into include/.

llvm-svn: 105896
This commit is contained in:
Eli Friedman 2010-06-12 18:29:53 +00:00
parent ef59f829e4
commit 81ad726f04
3 changed files with 5 additions and 3 deletions

View File

@ -11,6 +11,7 @@
#define utility_SharingPtr_h_
#include <algorithm>
#include <memory>
namespace lldb {
@ -67,6 +68,7 @@ private:
element_type* ptr_;
imp::shared_count* cntrl_;
struct nat {int for_bool_;};
public:
SharingPtr();
template<class Y> explicit SharingPtr(Y* p);
@ -90,7 +92,7 @@ public:
long use_count() const {return cntrl_ ? cntrl_->use_count() : 0;}
bool unique() const {return use_count() == 1;}
bool empty() const {return cntrl_ == 0;}
operator void*() const { return get(); }
operator nat*() const {return (nat*)get();}
private:

View File

@ -26,7 +26,7 @@
#include <stdbool.h>
#include <unistd.h>
#include "SharingPtr.h"
#include "lldb/Utility/SharingPtr.h"
//----------------------------------------------------------------------
// All host systems must define:

View File

@ -7,7 +7,7 @@
//
//===----------------------------------------------------------------------===//
#include "SharingPtr.h"
#include "lldb/Utility/SharingPtr.h"
namespace lldb {