mirror of
https://github.com/Relintai/sfw.git
synced 2025-01-30 22:59:17 +01:00
Fix new warning.
This commit is contained in:
parent
6b6eb0846e
commit
da6a09fd37
@ -190,12 +190,12 @@ public:
|
|||||||
size_mask = mask;
|
size_mask = mask;
|
||||||
};
|
};
|
||||||
|
|
||||||
RingBuffer<T>(int p_power = 0) {
|
RingBuffer(int p_power = 0) {
|
||||||
read_pos = 0;
|
read_pos = 0;
|
||||||
write_pos = 0;
|
write_pos = 0;
|
||||||
resize(p_power);
|
resize(p_power);
|
||||||
};
|
};
|
||||||
~RingBuffer<T>(){};
|
~RingBuffer(){};
|
||||||
};
|
};
|
||||||
|
|
||||||
//--STRIP
|
//--STRIP
|
||||||
|
@ -190,12 +190,12 @@ public:
|
|||||||
size_mask = mask;
|
size_mask = mask;
|
||||||
};
|
};
|
||||||
|
|
||||||
RingBuffer<T>(int p_power = 0) {
|
RingBuffer(int p_power = 0) {
|
||||||
read_pos = 0;
|
read_pos = 0;
|
||||||
write_pos = 0;
|
write_pos = 0;
|
||||||
resize(p_power);
|
resize(p_power);
|
||||||
};
|
};
|
||||||
~RingBuffer<T>(){};
|
~RingBuffer(){};
|
||||||
};
|
};
|
||||||
|
|
||||||
//--STRIP
|
//--STRIP
|
||||||
|
Loading…
Reference in New Issue
Block a user