[Lldb-commits] [lldb] r105773 - /lldb/trunk/include/lldb/Core/Debugger.h

Eli Friedman eli.friedman at gmail.com
Wed Jun 9 18:36:54 PDT 2010


Author: efriedma
Date: Wed Jun  9 20:36:54 2010
New Revision: 105773

URL: http://llvm.org/viewvc/llvm-project?rev=105773&view=rev
Log:
Don't use std::tr1::shared_ptr directly.


Modified:
    lldb/trunk/include/lldb/Core/Debugger.h

Modified: lldb/trunk/include/lldb/Core/Debugger.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Core/Debugger.h?rev=105773&r1=105772&r2=105773&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Core/Debugger.h (original)
+++ lldb/trunk/include/lldb/Core/Debugger.h Wed Jun  9 20:36:54 2010
@@ -150,7 +150,7 @@
     std::stack<lldb::InputReaderSP> m_input_readers;
     std::string m_input_reader_data;
     
-    typedef std::tr1::shared_ptr<Debugger> DebuggerSP;
+    typedef lldb::SharedPtr<Debugger>::Type DebuggerSP;
 
     static DebuggerSP &
     GetDebuggerSP();





More information about the lldb-commits mailing list