2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-03 07:25:18 +00:00

[#1308] Got rid of boost function/bind

This commit is contained in:
Francis Dupont
2020-07-31 00:04:26 +02:00
committed by Tomek Mrugalski
parent 6d562fcf4f
commit 2035f64c1c
115 changed files with 796 additions and 771 deletions

View File

@@ -63,11 +63,11 @@
#include <dhcpsrv/memfile_lease_mgr.h>
#include <boost/algorithm/string.hpp>
#include <boost/bind.hpp>
#include <boost/foreach.hpp>
#include <boost/pointer_cast.hpp>
#include <boost/shared_ptr.hpp>
#include <functional>
#include <iomanip>
#include <set>
#include <cstdlib>
@@ -82,6 +82,7 @@ using namespace isc::log;
using namespace isc::stats;
using namespace isc::util;
using namespace std;
using namespace std::placeholders;
namespace {
@@ -3839,8 +3840,8 @@ Dhcpv4Srv::startD2() {
// Updates are enabled, so lets start the sender, passing in
// our error handler.
// This may throw so wherever this is called needs to ready.
d2_mgr.startSender(boost::bind(&Dhcpv4Srv::d2ClientErrorHandler,
this, _1, _2));
d2_mgr.startSender(std::bind(&Dhcpv4Srv::d2ClientErrorHandler,
this, _1, _2));
}
}