summaryrefslogtreecommitdiff
path: root/core/ring_buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/ring_buffer.h')
-rw-r--r--core/ring_buffer.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/core/ring_buffer.h b/core/ring_buffer.h
index 8ef9b1a15c..816a5f33e1 100644
--- a/core/ring_buffer.h
+++ b/core/ring_buffer.h
@@ -35,7 +35,6 @@
template <typename T>
class RingBuffer {
-
Vector<T> data;
int read_pos = 0;
int write_pos = 0;
@@ -78,7 +77,6 @@ public:
};
int copy(T *p_buf, int p_offset, int p_size) const {
-
int left = data_left();
if ((p_offset + p_size) > left) {
p_size -= left - p_offset;
@@ -104,7 +102,6 @@ public:
};
int find(const T &t, int p_offset, int p_max_size) const {
-
int left = data_left();
if ((p_offset + p_max_size) > left) {
p_max_size -= left - p_offset;
@@ -148,7 +145,6 @@ public:
};
int write(const T *p_buf, int p_size) {
-
int left = space_left();
p_size = MIN(left, p_size);
@@ -156,7 +152,6 @@ public:
int to_write = p_size;
int src = 0;
while (to_write) {
-
int end = pos + to_write;
end = MIN(end, size());
int total = end - pos;