summaryrefslogtreecommitdiffstats
path: root/src/socket
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-08-20 15:32:09 +0000
committerDavid Robillard <d@drobilla.net>2013-08-20 15:32:09 +0000
commit4872ab2b213d9a1d9136103798781dbcc27993be (patch)
treeb1172554b991e9321f9d4a2f203c01bc62d7fbc7 /src/socket
parent685427be4bbd0f7c4c644c6d2f20dd152f2c52c3 (diff)
downloadingen-4872ab2b213d9a1d9136103798781dbcc27993be.tar.gz
ingen-4872ab2b213d9a1d9136103798781dbcc27993be.tar.bz2
ingen-4872ab2b213d9a1d9136103798781dbcc27993be.zip
Remove unused class members.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5156 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/socket')
-rw-r--r--src/socket/ingen_socket_server.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/socket/ingen_socket_server.cpp b/src/socket/ingen_socket_server.cpp
index 440f1597..b9bdc19c 100644
--- a/src/socket/ingen_socket_server.cpp
+++ b/src/socket/ingen_socket_server.cpp
@@ -123,12 +123,10 @@ struct ServerModule : public Ingen::Module
}
void load(World* world) {
- world = world;
thread = std::unique_ptr<std::thread>(
new std::thread(ingen_listen, world, &unix_sock, &net_sock));
}
- World* world;
Raul::Socket unix_sock;
Raul::Socket net_sock;
std::unique_ptr<std::thread> thread;