Fix new warning.

This commit is contained in:
Relintai 2024-07-21 20:35:09 +02:00
parent 6b6eb0846e
commit da6a09fd37
2 changed files with 4 additions and 4 deletions

View File

@ -190,12 +190,12 @@ public:
size_mask = mask;
};
RingBuffer<T>(int p_power = 0) {
RingBuffer(int p_power = 0) {
read_pos = 0;
write_pos = 0;
resize(p_power);
};
~RingBuffer<T>(){};
~RingBuffer(){};
};
//--STRIP

View File

@ -190,12 +190,12 @@ public:
size_mask = mask;
};
RingBuffer<T>(int p_power = 0) {
RingBuffer(int p_power = 0) {
read_pos = 0;
write_pos = 0;
resize(p_power);
};
~RingBuffer<T>(){};
~RingBuffer(){};
};
//--STRIP