diff options
author | Francis Dupont <fdupont@isc.org> | 2020-07-31 20:36:27 +0200 |
---|---|---|
committer | Tomek Mrugalski <tomek@isc.org> | 2020-08-13 15:54:14 +0200 |
commit | 0680e3e01c14fd44441c3614343c8b952f6797b2 (patch) | |
tree | 7f4e0afa6bc91ccfb4759315d58e9d59dc537771 /src/bin/dhcp6/dhcp6_srv.cc | |
parent | [#1308] Less _1 ambiguities (diff) | |
download | kea-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.cc | 4 |
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)); } } |