Add new line to RB debug output

This commit is contained in:
2020-04-15 15:03:55 +02:00
parent d5c3b9d858
commit eea8b57f13
+1 -1
View File
@@ -74,7 +74,7 @@ void RingBuffer<T>::initialize(const size_t requested_slot_size)
cout << " Ringbuffer initialized";
cout << " with slot_size " << slot_size_;
cout << " and n_slots " << n_slots_;
cout << " and buffer_size " << buffer_size_;
cout << " and buffer_size " << buffer_size_ << endl;
#endif
}