mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-04-03 22:02:12 +00:00
Move SharingPtr.h into include/.
llvm-svn: 105896
This commit is contained in:
parent
ef59f829e4
commit
81ad726f04
@ -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:
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include <stdbool.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "SharingPtr.h"
|
||||
#include "lldb/Utility/SharingPtr.h"
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// All host systems must define:
|
||||
|
@ -7,7 +7,7 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "SharingPtr.h"
|
||||
#include "lldb/Utility/SharingPtr.h"
|
||||
|
||||
namespace lldb {
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user