mirror of
https://github.com/g4klx/MMDVM.git
synced 2026-04-17 20:35:10 +00:00
Remove CSerialBuffer, use CRingBuffer
This commit is contained in:
parent
16c3d418eb
commit
03f18451f7
17 changed files with 36 additions and 39 deletions
|
|
@ -112,12 +112,3 @@ template <typename TDATATYPE> void CRingBuffer<TDATATYPE>::reset()
|
|||
m_full = false;
|
||||
m_overflow = false;
|
||||
}
|
||||
|
||||
template <typename TDATATYPE> TDATATYPE CRingBuffer<TDATATYPE>::get()
|
||||
{
|
||||
TDATATYPE value;
|
||||
if(get(value))
|
||||
return value;
|
||||
|
||||
//return 0U;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue