]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[1595] Remove 'explicit'
authorMichal 'vorner' Vaner <michal.vaner@nic.cz>
Fri, 3 Feb 2012 09:21:13 +0000 (10:21 +0100)
committerMichal 'vorner' Vaner <michal.vaner@nic.cz>
Fri, 3 Feb 2012 09:21:13 +0000 (10:21 +0100)
The constructor now has multiple parameters, so there's no chance it'd
get triggered by conversion.

src/lib/server_common/socket_request.cc

index 48412bb341e3bec02ea71dd682eff0a4851276e0..e471ad0d07909e000b47aab78db1aff502fd407c 100644 (file)
@@ -264,8 +264,8 @@ getSocketFd(const std::string& token, int sock_pass_fd) {
 // be closed during the lifetime of this class
 class SocketRequestorCCSession : public SocketRequestor {
 public:
-    explicit SocketRequestorCCSession(cc::AbstractSession& session,
-                                      const std::string& app_name) :
+    SocketRequestorCCSession(cc::AbstractSession& session,
+                             const std::string& app_name) :
         session_(session),
         app_name_(app_name)
     {