summaryrefslogtreecommitdiffstats
path: root/lldb/examples/interposing
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2012-02-21 19:02:29 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2012-02-21 19:02:29 +0000
commit4930dd6841d147f7aea4964c0a74213e714bc048 (patch)
treec92c33f2c79a30ed0edd84bfaafa166aaa632a2f /lldb/examples/interposing
parent0c90ef479a8870ed8adb598cd7e70518960f0353 (diff)
downloadbcm5719-llvm-4930dd6841d147f7aea4964c0a74213e714bc048.tar.gz
bcm5719-llvm-4930dd6841d147f7aea4964c0a74213e714bc048.zip
Revert accidental commit.
llvm-svn: 151074
Diffstat (limited to 'lldb/examples/interposing')
-rw-r--r--lldb/examples/interposing/darwin/fd_interposing/FDInterposing.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/examples/interposing/darwin/fd_interposing/FDInterposing.cpp b/lldb/examples/interposing/darwin/fd_interposing/FDInterposing.cpp
index bee15aaeb62..e41dc34038b 100644
--- a/lldb/examples/interposing/darwin/fd_interposing/FDInterposing.cpp
+++ b/lldb/examples/interposing/darwin/fd_interposing/FDInterposing.cpp
@@ -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 @@ private:
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;
//----------------------------------------------------------------------
OpenPOWER on IntegriCloud