NO-OP: whitespace

This commit is contained in:
Robin Gareus 2021-06-12 00:45:25 +02:00
parent ef72afb963
commit 1ed0e88e23
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04

View file

@ -41,8 +41,7 @@ BufferManager::init (uint32_t size)
thread_buffers = new ThreadBufferFIFO (size + 1); // must be one larger than requested thread_buffers = new ThreadBufferFIFO (size + 1); // must be one larger than requested
thread_buffers_list = new ThreadBufferList; thread_buffers_list = new ThreadBufferList;
/* and populate with actual ThreadBuffers /* and populate with actual ThreadBuffers */
*/
for (uint32_t n = 0; n < size; ++n) { for (uint32_t n = 0; n < size; ++n) {
ThreadBuffers* ts = new ThreadBuffers; ThreadBuffers* ts = new ThreadBuffers;
@ -50,7 +49,6 @@ BufferManager::init (uint32_t size)
thread_buffers_list->push_back (ts); thread_buffers_list->push_back (ts);
} }
// cerr << "Initialized thread buffers, readable count now " << thread_buffers->read_space() << endl; // cerr << "Initialized thread buffers, readable count now " << thread_buffers->read_space() << endl;
} }
ThreadBuffers* ThreadBuffers*