From afc23fa235033e9400a5d4c7ae5c6d8aaa282704 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Thu, 13 Oct 2016 14:45:22 -0700 Subject: [PATCH] ircd::util: Add noexcept specifier to custom_ptr deleter prototype. --- include/ircd/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ircd/util.h b/include/ircd/util.h index a62573fe1..fd24ef9ef 100644 --- a/include/ircd/util.h +++ b/include/ircd/util.h @@ -67,7 +67,7 @@ struct NAME \ template -using custom_ptr = std::unique_ptr>; +using custom_ptr = std::unique_ptr>; struct scope