@@ -301,29 +301,25 @@ namespace REL
301301 }
302302
303303 template <std::size_t N, std::ptrdiff_t O = 0 >
304- std::uintptr_t write_branch (const std::uintptr_t a_dst)
305- requires(std::same_as<value_type, std::uintptr_t >)
304+ std::uintptr_t write_branch (const std::uintptr_t a_dst) requires(std::same_as<value_type, std::uintptr_t >)
306305 {
307306 return F4SE::GetTrampoline ().write_branch <N>(address () + O, a_dst);
308307 }
309308
310309 template <std::size_t N, std::ptrdiff_t O = 0 , class F >
311- std::uintptr_t write_branch (const F a_dst)
312- requires(std::same_as<value_type, std::uintptr_t >)
310+ std::uintptr_t write_branch (const F a_dst) requires(std::same_as<value_type, std::uintptr_t >)
313311 {
314312 return F4SE::GetTrampoline ().write_branch <N>(address () + O, stl::unrestricted_cast<std::uintptr_t >(a_dst));
315313 }
316314
317315 template <std::size_t N, std::ptrdiff_t O = 0 >
318- std::uintptr_t write_call (const std::uintptr_t a_dst)
319- requires(std::same_as<value_type, std::uintptr_t >)
316+ std::uintptr_t write_call (const std::uintptr_t a_dst) requires(std::same_as<value_type, std::uintptr_t >)
320317 {
321- return F4SE::GetTrampoline ().write_call <N>(address () + O , a_dst);
318+ return F4SE::GetTrampoline ().write_call <N>(address () + O, a_dst);
322319 }
323320
324321 template <std::size_t N, std::ptrdiff_t O = 0 , class F >
325- std::uintptr_t write_call (const F a_dst)
326- requires(std::same_as<value_type, std::uintptr_t >)
322+ std::uintptr_t write_call (const F a_dst) requires(std::same_as<value_type, std::uintptr_t >)
327323 {
328324 return F4SE::GetTrampoline ().write_call <N>(address () + O, stl::unrestricted_cast<std::uintptr_t >(a_dst));
329325 }
0 commit comments