Skip to content

Commit

Permalink
ci: maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 30, 2024
1 parent 49a24ec commit 9d7f1cd
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
6 changes: 3 additions & 3 deletions include/RE/B/BSPointerHandle.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ namespace RE
}

private:

HandleType _handle{ 0 }; // 00
};

Expand All @@ -74,7 +73,8 @@ namespace RE

template <class Y>
BSPointerHandle(BSPointerHandle<Y, Handle> a_rhs) noexcept
requires(std::convertible_to<Y*, T*>) :
requires(std::convertible_to<Y*, T*>)
:
_handle(a_rhs._handle)
{}

Expand Down Expand Up @@ -136,7 +136,7 @@ namespace RE
public:
static bool GetSmartPointer(const BSPointerHandle<T>& a_in, NiPointer<T>& a_out)
{
using func_t = bool(*)(const BSPointerHandle<T>& a_in, NiPointer<T>& a_out);
using func_t = bool (*)(const BSPointerHandle<T>& a_in, NiPointer<T>& a_out);
static REL::Relocation<func_t> func{ ID::BSPointerHandleManagerInterface::GetSmartPointer };
return func(a_in, a_out);
}
Expand Down
4 changes: 2 additions & 2 deletions include/RE/T/TES.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ namespace RE
}

// members
std::byte pad[0xD8]; // 010
TESObjectCELL* interiorCell; // 0E8
std::byte pad[0xD8]; // 010
TESObjectCELL* interiorCell; // 0E8
};
static_assert(offsetof(TES, interiorCell) == 0xE8);
}
2 changes: 1 addition & 1 deletion include/RE/T/TESFaction.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

namespace RE
{
class TESReactionForm :
class TESReactionForm :
public BaseFormComponent // 00
{
public:
Expand Down
1 change: 0 additions & 1 deletion include/RE/T/TESPackage.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ namespace RE

struct PackageLocation
{

};

struct PackageTarget
Expand Down
2 changes: 1 addition & 1 deletion include/RE/U/UIMessageQueue.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace RE
virtual ~UIMessageData() = default;

UI_MESSAGE_TYPE type; // 08
//...more?
//...more?
};

enum UI_MESSAGE_RESULT : std::int64_t
Expand Down
2 changes: 1 addition & 1 deletion include/REL/Relocation.h
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ namespace REL
template <class T>
bool EmplaceVTable(T* a_ptr)
{
auto address = T::VTABLE[0].address();
auto address = T::VTABLE[0].address();
if (address) {
reinterpret_cast<std::uintptr_t*>(a_ptr)[0] = address;
return true;
Expand Down

0 comments on commit 9d7f1cd

Please sign in to comment.