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