[Lldb-commits] [lldb] r151074 - /lldb/trunk/examples/interposing/darwin/fd_interposing/FDInterposing.cpp

Benjamin Kramer benny.kra at googlemail.com
Tue Feb 21 11:02:29 PST 2012


Author: d0k
Date: Tue Feb 21 13:02:29 2012
New Revision: 151074

URL: http://llvm.org/viewvc/llvm-project?rev=151074&view=rev
Log:
Revert accidental commit.

Modified:
    lldb/trunk/examples/interposing/darwin/fd_interposing/FDInterposing.cpp

Modified: lldb/trunk/examples/interposing/darwin/fd_interposing/FDInterposing.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/examples/interposing/darwin/fd_interposing/FDInterposing.cpp?rev=151074&r1=151073&r2=151074&view=diff
==============================================================================
--- lldb/trunk/examples/interposing/darwin/fd_interposing/FDInterposing.cpp (original)
+++ lldb/trunk/examples/interposing/darwin/fd_interposing/FDInterposing.cpp Tue Feb 21 13:02:29 2012
@@ -62,7 +62,7 @@
 #include <sys/socket.h>
 #include <sys/types.h>
 #include <sys/time.h>
-#include <memory> // for std::shared_ptr
+#include <tr1/memory> // for std::tr1::shared_ptr
 #include <unistd.h>
 #include <string>
 #include <vector>
@@ -168,8 +168,8 @@
 typedef std::vector<void *> Frames;
 class FDEvent;
 typedef std::vector<void *> Frames;
-typedef std::shared_ptr<FDEvent> FDEventSP;
-typedef std::shared_ptr<String> StringSP;
+typedef std::tr1::shared_ptr<FDEvent> FDEventSP;
+typedef std::tr1::shared_ptr<String> StringSP;
 
 
 //----------------------------------------------------------------------





More information about the lldb-commits mailing list