@@ -8,7 +8,7 @@ namespace UE::Core::Private::Function
88 template <class F , class R , class ... T>
99 struct TFunctorReturnTypeIsCompatible
1010 {
11- static constexpr bool Value{ std::is_constructible_v<R, decltype (std::declval<F>()(std::declval<T>()...))> };
11+ static constexpr bool Value{ std::is_constructible_v<R, decltype (std::declval<F>()(std::declval<T>()...))> };
1212 };
1313
1414 template <class MR , class C , class R , class ... T>
@@ -18,7 +18,7 @@ namespace UE::Core::Private::Function
1818 };
1919
2020 template <class MR , class C , class R , class ... T>
21- struct TFunctorReturnTypeIsCompatible <MR C::* const , R, T...>
21+ struct TFunctorReturnTypeIsCompatible <MR C::*const , R, T...>
2222 {
2323 static constexpr bool Value{ std::is_constructible_v<R, MR> };
2424 };
@@ -333,7 +333,7 @@ namespace UE::Core::Private::Function
333333 }
334334
335335 template <class U >
336- requires (!std::is_same_v<TFunctionRefBase, std::decay_t <U>>)
336+ requires (!std::is_same_v<TFunctionRefBase, std::decay_t <U>>)
337337 TFunctionRefBase (U&& a_func)
338338 {
339339 auto binding = storage.Bind (std::forward<U>(a_func));
@@ -368,7 +368,7 @@ namespace UE::Core::Private::Function
368368 }
369369
370370 // members
371- R (*callable)
371+ R (*callable)
372372 (void *, T&...){ nullptr };
373373 S storage;
374374 };
0 commit comments