File tree Expand file tree Collapse file tree 6 files changed +8
-9
lines changed Expand file tree Collapse file tree 6 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,6 @@ namespace RE
60
60
}
61
61
62
62
private:
63
-
64
63
HandleType _handle{ 0 }; // 00
65
64
};
66
65
@@ -74,7 +73,8 @@ namespace RE
74
73
75
74
template <class Y >
76
75
BSPointerHandle (BSPointerHandle<Y, Handle> a_rhs) noexcept
77
- requires (std::convertible_to<Y*, T*>) :
76
+ requires (std::convertible_to<Y*, T*>)
77
+ :
78
78
_handle (a_rhs._handle)
79
79
{}
80
80
@@ -136,7 +136,7 @@ namespace RE
136
136
public:
137
137
static bool GetSmartPointer (const BSPointerHandle<T>& a_in, NiPointer<T>& a_out)
138
138
{
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);
140
140
static REL::Relocation<func_t > func{ ID::BSPointerHandleManagerInterface::GetSmartPointer };
141
141
return func (a_in, a_out);
142
142
}
Original file line number Diff line number Diff line change @@ -35,8 +35,8 @@ namespace RE
35
35
}
36
36
37
37
// members
38
- std::byte pad[0xD8 ]; // 010
39
- TESObjectCELL* interiorCell; // 0E8
38
+ std::byte pad[0xD8 ]; // 010
39
+ TESObjectCELL* interiorCell; // 0E8
40
40
};
41
41
static_assert (offsetof(TES, interiorCell) == 0xE8 );
42
42
}
Original file line number Diff line number Diff line change 5
5
6
6
namespace RE
7
7
{
8
- class TESReactionForm :
8
+ class TESReactionForm :
9
9
public BaseFormComponent // 00
10
10
{
11
11
public:
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ namespace RE
20
20
21
21
struct PackageLocation
22
22
{
23
-
24
23
};
25
24
26
25
struct PackageTarget
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ namespace RE
25
25
virtual ~UIMessageData () = default ;
26
26
27
27
UI_MESSAGE_TYPE type; // 08
28
- // ...more?
28
+ // ...more?
29
29
};
30
30
31
31
enum UI_MESSAGE_RESULT : std::int64_t
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ namespace REL
152
152
template <class T >
153
153
bool EmplaceVTable (T* a_ptr)
154
154
{
155
- auto address = T::VTABLE[0 ].address ();
155
+ auto address = T::VTABLE[0 ].address ();
156
156
if (address) {
157
157
reinterpret_cast <std::uintptr_t *>(a_ptr)[0 ] = address;
158
158
return true ;
You can’t perform that action at this time.
0 commit comments