Skip to content

Commit 9d7f1cd

Browse files
ci: maintenance
1 parent 49a24ec commit 9d7f1cd

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

include/RE/B/BSPointerHandle.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ namespace RE
6060
}
6161

6262
private:
63-
6463
HandleType _handle{ 0 }; // 00
6564
};
6665

@@ -74,7 +73,8 @@ namespace RE
7473

7574
template <class Y>
7675
BSPointerHandle(BSPointerHandle<Y, Handle> a_rhs) noexcept
77-
requires(std::convertible_to<Y*, T*>) :
76+
requires(std::convertible_to<Y*, T*>)
77+
:
7878
_handle(a_rhs._handle)
7979
{}
8080

@@ -136,7 +136,7 @@ namespace RE
136136
public:
137137
static bool GetSmartPointer(const BSPointerHandle<T>& a_in, NiPointer<T>& a_out)
138138
{
139-
using func_t = bool(*)(const BSPointerHandle<T>& a_in, NiPointer<T>& a_out);
139+
using func_t = bool (*)(const BSPointerHandle<T>& a_in, NiPointer<T>& a_out);
140140
static REL::Relocation<func_t> func{ ID::BSPointerHandleManagerInterface::GetSmartPointer };
141141
return func(a_in, a_out);
142142
}

include/RE/T/TES.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ namespace RE
3535
}
3636

3737
// members
38-
std::byte pad[0xD8]; // 010
39-
TESObjectCELL* interiorCell; // 0E8
38+
std::byte pad[0xD8]; // 010
39+
TESObjectCELL* interiorCell; // 0E8
4040
};
4141
static_assert(offsetof(TES, interiorCell) == 0xE8);
4242
}

include/RE/T/TESFaction.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace RE
77
{
8-
class TESReactionForm :
8+
class TESReactionForm :
99
public BaseFormComponent // 00
1010
{
1111
public:

include/RE/T/TESPackage.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ namespace RE
2020

2121
struct PackageLocation
2222
{
23-
2423
};
2524

2625
struct PackageTarget

include/RE/U/UIMessageQueue.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace RE
2525
virtual ~UIMessageData() = default;
2626

2727
UI_MESSAGE_TYPE type; // 08
28-
//...more?
28+
//...more?
2929
};
3030

3131
enum UI_MESSAGE_RESULT : std::int64_t

include/REL/Relocation.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ namespace REL
152152
template <class T>
153153
bool EmplaceVTable(T* a_ptr)
154154
{
155-
auto address = T::VTABLE[0].address();
155+
auto address = T::VTABLE[0].address();
156156
if (address) {
157157
reinterpret_cast<std::uintptr_t*>(a_ptr)[0] = address;
158158
return true;

0 commit comments

Comments
 (0)