diff options
Diffstat (limited to 'lldb/tools/debugserver/source/MacOSX/MachThread.h')
-rw-r--r-- | lldb/tools/debugserver/source/MacOSX/MachThread.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/tools/debugserver/source/MacOSX/MachThread.h b/lldb/tools/debugserver/source/MacOSX/MachThread.h index b76e84872de..7aa299b2439 100644 --- a/lldb/tools/debugserver/source/MacOSX/MachThread.h +++ b/lldb/tools/debugserver/source/MacOSX/MachThread.h @@ -16,7 +16,6 @@ #include <string> #include <vector> -#include <tr1/memory> // for std::tr1::shared_ptr #include <libproc.h> #include <mach/mach.h> @@ -137,6 +136,6 @@ private: void HardwareWatchpointStateChanged(); // Provide a chance to update the global view of the hardware watchpoint state }; -typedef std::tr1::shared_ptr<MachThread> MachThreadSP; +typedef STD_SHARED_PTR(MachThread) MachThreadSP; #endif |