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 2, 2024
1 parent f257ab3 commit 0760b74
Show file tree
Hide file tree
Showing 20 changed files with 512 additions and 517 deletions.
2 changes: 1 addition & 1 deletion include/RE/B/BGSColorForm.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace RE
{
std::uint32_t color;
float remappingIndex;
}; // 40
}; // 40
TESCondition conditions; // 48
REX::EnumSet<Flag, std::uint32_t> flags; // 58
};
Expand Down
15 changes: 5 additions & 10 deletions include/RE/B/BSScriptUtil.h
Original file line number Diff line number Diff line change
Expand Up @@ -148,16 +148,14 @@ namespace RE::BSScript
class T,
class Allocator>
struct script_traits<
std::vector<T, Allocator>>
final
std::vector<T, Allocator>> final
{
using is_array = std::true_type;
};

template <class Traits>
struct script_traits<
std::basic_string_view<char, Traits>>
final
std::basic_string_view<char, Traits>> final
{
using is_string = std::true_type;
};
Expand All @@ -166,24 +164,21 @@ namespace RE::BSScript
class Traits,
class Allocator>
struct script_traits<
std::basic_string<char, Traits, Allocator>>
final
std::basic_string<char, Traits, Allocator>> final
{
using is_string = std::true_type;
};

template <class CharT, bool CS>
struct script_traits<
RE::detail::BSFixedString<CharT, CS>>
final
RE::detail::BSFixedString<CharT, CS>> final
{
using is_string = std::true_type;
};

template <class T>
struct script_traits<
std::optional<T>>
final
std::optional<T>> final
{
using is_nullable = std::true_type;
};
Expand Down
2 changes: 1 addition & 1 deletion include/RE/B/BSStringPool.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ namespace RE
{
std::uint32_t _length; // Number of bytes (even for wchar_t).
Entry* _right;
}; // 08
}; // 08
volatile std::uint32_t _refCount; // 10
std::uint8_t _flags; // 14
};
Expand Down
2 changes: 1 addition & 1 deletion include/RE/B/BSTOptional.h
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ namespace RE
{
std::remove_const_t<value_type> _value;
std::byte _buffer[sizeof(value_type)]{};
}; // 00
}; // 00
bool _active{ false }; // ??
};

Expand Down
2 changes: 1 addition & 1 deletion include/RE/I/IMenu.h
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ namespace RE
return func(this, a_arg1, a_arg2);
}

virtual void Unk0F(){}; // 0F
virtual void Unk0F() {}; // 0F

virtual std::uint64_t Unk10() // 10
{
Expand Down
2 changes: 1 addition & 1 deletion include/RE/I/IStackCallbackSaveInterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace RE
public BSIntrusiveRefCounted
{
public:
virtual ~IStackCallbackFunctor(){}; // 00
virtual ~IStackCallbackFunctor() {}; // 00

// add
virtual void CallQueued() = 0; // 01
Expand Down
6 changes: 3 additions & 3 deletions include/RE/M/Main.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ namespace RE
struct SceneGraphRoot
{
// members
std::byte pad00[0x78]; // 00
NiAVObject* worldCameraRoot; // 78 - NiNode
NiCamera* worldCamera; // 80
std::byte pad00[0x78]; // 00
NiAVObject* worldCameraRoot; // 78 - NiNode
NiCamera* worldCamera; // 80
};
// static_assert(offsetof(SceneGraphRoot, SceneGraphRoot::worldCamera) == 0x80); // FIXME: clang-cl chokes on this assertion

Expand Down
2 changes: 1 addition & 1 deletion include/RE/N/NiPoint3.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace RE
constexpr NiPoint3(float a_x, float a_y, float a_z) noexcept :
x(a_x),
y(a_y),
z(a_z){};
z(a_z) {};

float& operator[](std::size_t a_idx);
const float& operator[](std::size_t a_idx) const;
Expand Down
Loading

0 comments on commit 0760b74

Please sign in to comment.