Add missing closing >

This commit is contained in:
Paul Liétar
2020-04-10 12:54:09 +02:00
parent 1ccb808a18
commit 6f697e06ef

View File

@@ -120,8 +120,9 @@ namespace snmalloc
// copy / move constructors.
template<
typename Fn,
typename = std::enable_if_t<
!std::is_same_v<std::decay_t<Fn>, function_ref>> function_ref(Fn&& fn)
typename =
std::enable_if_t<!std::is_same_v<std::decay_t<Fn>, function_ref>>>
function_ref(Fn&& fn)
{
data_ = static_cast<void*>(&fn);
fn_ = execute<Fn>;