summaryrefslogtreecommitdiffstats
path: root/lldb/examples/interposing/darwin/fd_interposing/FDInterposing.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2012-02-21 18:37:14 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2012-02-21 18:37:14 +0000
commitff461fcf07688fafdf3b84dee11d84ac760fcf5d (patch)
tree7ae1748ab4de7bac6c475046dc3bcd3300531004 /lldb/examples/interposing/darwin/fd_interposing/FDInterposing.cpp
parent8fdeff25e8cd9e751fac8836c9c3b5fd48944641 (diff)
downloadbcm5719-llvm-ff461fcf07688fafdf3b84dee11d84ac760fcf5d.tar.gz
bcm5719-llvm-ff461fcf07688fafdf3b84dee11d84ac760fcf5d.zip
Remove a ton of implicit narrowing conversions for C++11 compatibility.
llvm-svn: 151071
Diffstat (limited to 'lldb/examples/interposing/darwin/fd_interposing/FDInterposing.cpp')
-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 e41dc34038b..bee15aaeb62 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 <tr1/memory> // for std::tr1::shared_ptr
+#include <memory> // for std::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::tr1::shared_ptr<FDEvent> FDEventSP;
-typedef std::tr1::shared_ptr<String> StringSP;
+typedef std::shared_ptr<FDEvent> FDEventSP;
+typedef std::shared_ptr<String> StringSP;
//----------------------------------------------------------------------
OpenPOWER on IntegriCloud