mirror of
https://github.com/matrix-construct/construct
synced 2025-02-18 17:50:16 +01:00
ircd::util: Add noexcept specifier to custom_ptr deleter prototype.
This commit is contained in:
parent
39fb2001a7
commit
afc23fa235
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ struct NAME \
|
|||
|
||||
|
||||
template<class T>
|
||||
using custom_ptr = std::unique_ptr<T, std::function<void (T *)>>;
|
||||
using custom_ptr = std::unique_ptr<T, std::function<void (T *) noexcept>>;
|
||||
|
||||
|
||||
struct scope
|
||||
|
|
Loading…
Add table
Reference in a new issue