summaryrefslogtreecommitdiffstats
path: root/src/SocketWriter.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-02 15:23:19 +0200
committerDavid Robillard <d@drobilla.net>2020-08-02 15:23:19 +0200
commitbdbdf42f3fe990c713c5437724db39274c387eee (patch)
tree7f921a04fd580da6bcb6fc8975fa2aebfcd93e0f /src/SocketWriter.cpp
parentec0b87a18623c17c16f6a648fcf277abe14142b7 (diff)
downloadingen-bdbdf42f3fe990c713c5437724db39274c387eee.tar.gz
ingen-bdbdf42f3fe990c713c5437724db39274c387eee.tar.bz2
ingen-bdbdf42f3fe990c713c5437724db39274c387eee.zip
Remove std::shared_ptr alias
Diffstat (limited to 'src/SocketWriter.cpp')
-rw-r--r--src/SocketWriter.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/SocketWriter.cpp b/src/SocketWriter.cpp
index 910f67f3..4e895135 100644
--- a/src/SocketWriter.cpp
+++ b/src/SocketWriter.cpp
@@ -21,6 +21,7 @@
#include <boost/variant/get.hpp>
+#include <memory>
#include <sys/socket.h>
#include <sys/types.h>
#include <utility>
@@ -31,10 +32,10 @@
namespace ingen {
-SocketWriter::SocketWriter(URIMap& map,
- URIs& uris,
- const URI& uri,
- SPtr<Raul::Socket> sock)
+SocketWriter::SocketWriter(URIMap& map,
+ URIs& uris,
+ const URI& uri,
+ std::shared_ptr<Raul::Socket> sock)
: TurtleWriter(map, uris, uri)
, _socket(std::move(sock))
{}