summaryrefslogtreecommitdiffstats
path: root/src/bin/dhcp6/dhcp6_srv.cc
diff options
context:
space:
mode:
authorFrancis Dupont <fdupont@isc.org>2020-07-31 20:36:27 +0200
committerTomek Mrugalski <tomek@isc.org>2020-08-13 15:54:14 +0200
commit0680e3e01c14fd44441c3614343c8b952f6797b2 (patch)
tree7f4e0afa6bc91ccfb4759315d58e9d59dc537771 /src/bin/dhcp6/dhcp6_srv.cc
parent[#1308] Less _1 ambiguities (diff)
downloadkea-0680e3e01c14fd44441c3614343c8b952f6797b2.tar.xz
kea-0680e3e01c14fd44441c3614343c8b952f6797b2.zip
[#1308] No _1 ambiguities
Diffstat (limited to 'src/bin/dhcp6/dhcp6_srv.cc')
-rw-r--r--src/bin/dhcp6/dhcp6_srv.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/dhcp6/dhcp6_srv.cc b/src/bin/dhcp6/dhcp6_srv.cc
index 9c44466c9c..5cc48e3722 100644
--- a/src/bin/dhcp6/dhcp6_srv.cc
+++ b/src/bin/dhcp6/dhcp6_srv.cc
@@ -91,7 +91,7 @@ using namespace isc::log;
using namespace isc::stats;
using namespace isc::util;
using namespace std;
-using namespace std::placeholders;
+namespace ph = std::placeholders;
namespace {
@@ -3991,7 +3991,7 @@ Dhcpv6Srv::startD2() {
// our error handler.
// This may throw so wherever this is called needs to ready.
d2_mgr.startSender(std::bind(&Dhcpv6Srv::d2ClientErrorHandler,
- this, _1, _2));
+ this, ph::_1, ph::_2));
}
}