diff options
author | David Robillard <d@drobilla.net> | 2018-01-20 13:07:29 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-01-21 00:31:38 +0100 |
commit | 5eb7a555de2291f4df8c75ce261c555552725beb (patch) | |
tree | 38e075a0841e64996e7abeba1a36286a6c002c5f /test/socket_test.cpp | |
parent | 6a8f9d519bcce0f7b90d18af56458c4a6701a927 (diff) | |
download | raul-5eb7a555de2291f4df8c75ce261c555552725beb.tar.gz raul-5eb7a555de2291f4df8c75ce261c555552725beb.tar.bz2 raul-5eb7a555de2291f4df8c75ce261c555552725beb.zip |
Remove URI class
Diffstat (limited to 'test/socket_test.cpp')
-rw-r--r-- | test/socket_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/socket_test.cpp b/test/socket_test.cpp index d6a7b15..8dd4aff 100644 --- a/test/socket_test.cpp +++ b/test/socket_test.cpp @@ -27,8 +27,8 @@ using namespace Raul; int main(int argc, char** argv) { - Raul::URI unix_uri("unix:///tmp/raul_test_sock"); - Raul::URI tcp_uri("tcp://127.0.0.1:12345"); + std::string unix_uri("unix:///tmp/raul_test_sock"); + std::string tcp_uri("tcp://127.0.0.1:12345"); Raul::Socket unix_server_sock(Socket::Type::UNIX); Raul::Socket tcp_server_sock(Socket::Type::TCP); |