Skip to content

Commit

Permalink
[Fix] Warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mrouffet committed Mar 31, 2024
1 parent 8d96365 commit ee6e60d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Include/SA/Logger/Misc/RindBuffer.inl
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ namespace SA
template <typename T>
uint32_t RingBuffer<T>::Size() const noexcept
{
return mPushCursor - mPopCursor;
return static_cast<uint32_t>(mPushCursor - mPopCursor);
}

template <typename T>
Expand Down

0 comments on commit ee6e60d

Please sign in to comment.