From c3be1471059aa00970eddb8c5745192ed0b13fbc Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Fri, 16 Dec 2022 15:47:08 +0100 Subject: [PATCH] channel: Use the template deleter parameter --- pdns/channel.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/channel.hh b/pdns/channel.hh index ff34e9f990..9334f3b64d 100644 --- a/pdns/channel.hh +++ b/pdns/channel.hh @@ -263,7 +263,7 @@ namespace channel template std::optional> Receiver::receive() { - return receive(std::default_delete()); + return receive(D()); } template -- 2.47.2