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. // copy / move constructors.
template< template<
typename Fn, typename Fn,
typename = std::enable_if_t< typename =
!std::is_same_v<std::decay_t<Fn>, function_ref>> function_ref(Fn&& fn) std::enable_if_t<!std::is_same_v<std::decay_t<Fn>, function_ref>>>
function_ref(Fn&& fn)
{ {
data_ = static_cast<void*>(&fn); data_ = static_cast<void*>(&fn);
fn_ = execute<Fn>; fn_ = execute<Fn>;