summaryrefslogtreecommitdiffstats
path: root/src/lib/dns/rrcollator.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/dns/rrcollator.h')
-rw-r--r--src/lib/dns/rrcollator.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/dns/rrcollator.h b/src/lib/dns/rrcollator.h
index 6ada41ed9e..9442fd3970 100644
--- a/src/lib/dns/rrcollator.h
+++ b/src/lib/dns/rrcollator.h
@@ -1,4 +1,4 @@
-// Copyright (C) 2012-2017 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2012-2020 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -11,7 +11,7 @@
#include <dns/rrset.h>
#include <boost/noncopyable.hpp>
-#include <boost/function.hpp>
+#include <functional>
namespace isc {
namespace dns {
@@ -51,7 +51,7 @@ public:
/// the \c RRCollator.
///
/// \param rrset The collated RRset.
- typedef boost::function<void(const RRsetPtr& rrset)> AddRRsetCallback;
+ typedef std::function<void(const RRsetPtr& rrset)> AddRRsetCallback;
/// \brief Constructor.
///