summaryrefslogtreecommitdiff
path: root/include/socket.h
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2016-08-08 15:06:41 +0200
committerAttila Molnar <attilamolnar@hush.com>2016-08-08 15:06:41 +0200
commit2b3b0ce142c16d50462e644821983c525874f10e (patch)
tree66cecc1daa78df4a2548f6e1345b17250101cec2 /include/socket.h
parenta7a0f69c6bf32b63c3314a097929c533296b1c86 (diff)
Change return type of ListenSocket::ResetIOHookProvider() to void
No code was using the return value
Diffstat (limited to 'include/socket.h')
-rw-r--r--include/socket.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/socket.h b/include/socket.h
index b15ddcb3d..52294fe71 100644
--- a/include/socket.h
+++ b/include/socket.h
@@ -159,7 +159,6 @@ class CoreExport ListenSocket : public EventHandler
/** Inspects the bind block belonging to this socket to set the name of the IO hook
* provider which this socket will use for incoming connections.
- * @return True if the IO hook provider was found or none was given, false otherwise.
*/
- bool ResetIOHookProvider();
+ void ResetIOHookProvider();
};