Skip to content
Snippets Groups Projects
Commit e1dc04d3 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

ringbuffer: fix warnings

Refs #45117
parent db02fea6
No related branches found
No related tags found
No related merge requests found
...@@ -51,6 +51,7 @@ RingBuffer::RingBuffer(size_t size, const std::string &call_id, AudioFormat form ...@@ -51,6 +51,7 @@ RingBuffer::RingBuffer(size_t size, const std::string &call_id, AudioFormat form
endPos_(0) endPos_(0)
, buffer_(std::max(size, MIN_BUFFER_SIZE), format) , buffer_(std::max(size, MIN_BUFFER_SIZE), format)
, lock_() , lock_()
, not_empty_()
, readpointers_() , readpointers_()
, buffer_id_(call_id) , buffer_id_(call_id)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment