Skip to content

Commit

Permalink
Fix intellisense error
Browse files Browse the repository at this point in the history
  • Loading branch information
Exit-9B committed Nov 5, 2024
1 parent 4e8c142 commit a75e027
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions include/REL/Relocation.h
Original file line number Diff line number Diff line change
Expand Up @@ -513,13 +513,13 @@ namespace REL

static Module _singleton;
inline static bool _loaded{ false };
std::array<wchar_t, SKSE::WinAPI::MAX_PATH> _filename;
std::array<Segment, Segment::total> _segments;
std::array<wchar_t, SKSE::WinAPI::MAX_PATH> _filename{ L"" };
std::array<Segment, Segment::total> _segments{};
Version _version;
std::uintptr_t _base{ 0 };
};

inline constinit Module Module::_singleton{};
inline constinit Module Module::_singleton;

inline Module& Module::get()
{
Expand Down Expand Up @@ -832,7 +832,7 @@ namespace REL
std::span<mapping_t> _id2offset;
};

inline constinit IDDatabase IDDatabase::_singleton{};
inline constinit IDDatabase IDDatabase::_singleton;

inline IDDatabase& IDDatabase::get()
{
Expand Down Expand Up @@ -942,7 +942,7 @@ namespace REL
std::size_t _capacity{ 0 };
};

inline constinit AddressManager AddressManager::_singleton{};
inline constinit AddressManager AddressManager::_singleton;

inline AddressManager& AddressManager::get()
{
Expand Down

0 comments on commit a75e027

Please sign in to comment.