0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-18 09:58:22 +02:00

ircd::util: Add noexcept specifier to custom_ptr deleter prototype.

This commit is contained in:
Jason Volk 2016-10-13 14:45:22 -07:00
parent 39fb2001a7
commit afc23fa235

View file

@ -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