diff --git a/src/utils.hh b/src/utils.hh index 88d95e11..50297f8d 100644 --- a/src/utils.hh +++ b/src/utils.hh @@ -1,6 +1,8 @@ #ifndef utils_hh_INCLUDED #define utils_hh_INCLUDED +#include + namespace Kakoune { @@ -29,6 +31,11 @@ ReversedContainer reversed(Container& container) return ReversedContainer(container); } +template +bool operator== (const std::unique_ptr& lhs, T* rhs) +{ + return lhs.get() == rhs; +} }