mirror of
https://github.com/xenia-project/disruptorplus.git
synced 2024-11-23 11:39:52 +00:00
Fix typo in ring_buffer::operator[].
This commit is contained in:
parent
1e8cdf3f9e
commit
7a04956308
@ -37,7 +37,7 @@ namespace disruptorplus
|
||||
|
||||
const T& operator[](sequence_t seq) const
|
||||
{
|
||||
return m_data[static_case<size_t>(seq) & m_mask];
|
||||
return m_data[static_cast<size_t>(seq) & m_mask];
|
||||
}
|
||||
|
||||
private:
|
||||
|
Loading…
Reference in New Issue
Block a user