Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
alphanin9 committed Nov 22, 2024
1 parent a9334f1 commit f4ef800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parsing/New/Readers/BufferCursor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ CName Cursor::ReadUnknownLengthName() noexcept
{
auto view = std::string_view{reinterpret_cast<char*>(GetCurrentPosition())};

m_offset += view.size();
m_offset += static_cast<std::uint32_t>(view.size());

return CNamePool::Add(view.data());
}
Expand Down

0 comments on commit f4ef800

Please sign in to comment.