diff options
Diffstat (limited to 'lldb/source/Plugins/Process/Utility/UnwindLLDB.h')
| -rw-r--r-- | lldb/source/Plugins/Process/Utility/UnwindLLDB.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/Utility/UnwindLLDB.h b/lldb/source/Plugins/Process/Utility/UnwindLLDB.h index ff4030f6364..7d1c8a1f146 100644 --- a/lldb/source/Plugins/Process/Utility/UnwindLLDB.h +++ b/lldb/source/Plugins/Process/Utility/UnwindLLDB.h @@ -70,7 +70,7 @@ protected: lldb::RegisterContextSP DoCreateRegisterContextForFrame (lldb_private::StackFrame *frame); - typedef SHARED_PTR(RegisterContextLLDB) RegisterContextLLDBSP; + typedef STD_SHARED_PTR(RegisterContextLLDB) RegisterContextLLDBSP; // Needed to retrieve the "next" frame (e.g. frame 2 needs to retrieve frame 1's RegisterContextLLDB) // The RegisterContext for frame_num must already exist or this returns an empty shared pointer. @@ -97,7 +97,7 @@ private: DISALLOW_COPY_AND_ASSIGN (Cursor); }; - typedef SHARED_PTR(Cursor) CursorSP; + typedef STD_SHARED_PTR(Cursor) CursorSP; std::vector<CursorSP> m_frames; bool m_unwind_complete; // If this is true, we've enumerated all the frames in the stack, and m_frames.size() is the // number of frames, etc. Otherwise we've only gone as far as directly asked, and m_frames.size() |

