Skip to content

Commit b857796

Browse files
shad0wshayd3github-actions[bot]
authored andcommitted
maintenance
1 parent de316c9 commit b857796

4 files changed

Lines changed: 9 additions & 13 deletions

File tree

CommonLibF4/cmake/sourcelist.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,6 @@ set(SOURCES
216216
include/RE/Bethesda/Settings.h
217217
include/RE/Bethesda/Sky.h
218218
include/RE/Bethesda/SplineUtils.h
219-
include/RE/Bethesda/TaskQueueInterface.h
220219
include/RE/Bethesda/TESBoundAnimObjects.h
221220
include/RE/Bethesda/TESBoundObjects.h
222221
include/RE/Bethesda/TESCamera.h
@@ -232,6 +231,7 @@ set(SOURCES
232231
include/RE/Bethesda/TESWaterForm.h
233232
include/RE/Bethesda/TESWorldSpace.h
234233
include/RE/Bethesda/TLS.h
234+
include/RE/Bethesda/TaskQueueInterface.h
235235
include/RE/Bethesda/UI.h
236236
include/RE/Bethesda/UIMessage.h
237237
include/RE/Bethesda/UIMessageQueue.h

CommonLibF4/include/RE/Bethesda/TESCondition.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,14 @@ namespace RE
8080

8181
[[nodiscard]] bool IsTrue(TESObjectREFR* a_actionRef, TESObjectREFR* a_targetRef)
8282
{
83-
using func_t = bool(*)(TESConditionItem*, TESObjectREFR*, TESObjectREFR*);
83+
using func_t = bool (*)(TESConditionItem*, TESObjectREFR*, TESObjectREFR*);
8484
static REL::Relocation<func_t> func{ REL::ID(2212008) };
8585
return func(this, a_actionRef, a_targetRef);
8686
}
8787

8888
[[nodiscard]] bool IsTrue(ConditionCheckParams& a_params)
8989
{
90-
using func_t = bool(*)(TESConditionItem*, ConditionCheckParams&);
90+
using func_t = bool (*)(TESConditionItem*, ConditionCheckParams&);
9191
static REL::Relocation<func_t> func{ REL::ID(2212009) };
9292
return func(this, a_params);
9393
}

CommonLibF4/include/RE/Fallout.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,6 @@
211211
#include "RE/Bethesda/Settings.h"
212212
#include "RE/Bethesda/Sky.h"
213213
#include "RE/Bethesda/SplineUtils.h"
214-
#include "RE/Bethesda/TaskQueueInterface.h"
215214
#include "RE/Bethesda/TESBoundAnimObjects.h"
216215
#include "RE/Bethesda/TESBoundObjects.h"
217216
#include "RE/Bethesda/TESCamera.h"
@@ -227,6 +226,7 @@
227226
#include "RE/Bethesda/TESWaterForm.h"
228227
#include "RE/Bethesda/TESWorldSpace.h"
229228
#include "RE/Bethesda/TLS.h"
229+
#include "RE/Bethesda/TaskQueueInterface.h"
230230
#include "RE/Bethesda/UI.h"
231231
#include "RE/Bethesda/UIMessage.h"
232232
#include "RE/Bethesda/UIMessageQueue.h"

CommonLibF4/include/REL/Relocation.h

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)