mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-12-25 02:18:30 +01:00
Fixed code style
This commit is contained in:
parent
5971d3d3b3
commit
4aaf71f5cc
@ -8,11 +8,7 @@ namespace dsp {
|
|||||||
template <class T>
|
template <class T>
|
||||||
class RingBuffer {
|
class RingBuffer {
|
||||||
public:
|
public:
|
||||||
RingBuffer():
|
RingBuffer() {}
|
||||||
_buffer{nullptr}
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
RingBuffer(int maxLatency) { init(maxLatency); }
|
RingBuffer(int maxLatency) { init(maxLatency); }
|
||||||
|
|
||||||
@ -202,7 +198,7 @@ namespace dsp {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
T* _buffer;
|
T* _buffer = NULL;
|
||||||
int size;
|
int size;
|
||||||
int readc;
|
int readc;
|
||||||
int writec;
|
int writec;
|
||||||
|
Loading…
Reference in New Issue
Block a user