diff options
author | Max Kellermann <max@musicpd.org> | 2016-10-28 10:36:05 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2016-10-28 21:22:25 +0200 |
commit | aead221184f52e68d161118a925a242f0858f736 (patch) | |
tree | a5a41c1db2c60a952d40652a55263bbff315fa1e /src/Listen.hxx | |
parent | 16d1c9f5d6247a97ba835f5d100fca56806845e7 (diff) |
event/ServerSocket: migrate from class Error to C++ exceptions
Diffstat (limited to 'src/Listen.hxx')
-rw-r--r-- | src/Listen.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Listen.hxx b/src/Listen.hxx index e6b17e4f7..a581227a4 100644 --- a/src/Listen.hxx +++ b/src/Listen.hxx @@ -21,13 +21,12 @@ #define MPD_LISTEN_HXX class EventLoop; -class Error; struct Partition; extern int listen_port; -bool -listen_global_init(EventLoop &loop, Partition &partition, Error &error); +void +listen_global_init(EventLoop &loop, Partition &partition); void listen_global_finish(); |