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

ringbuffer: remove default arguments

We don't use them.

Refs #45490
parent 87da9ad5
No related branches found
No related tags found
No related merge requests found
...@@ -133,7 +133,7 @@ class RingBuffer { ...@@ -133,7 +133,7 @@ class RingBuffer {
* @param deadline The call is garenteed to end after this time point. If no deadline is provided, the the call blocks indefinitely. * @param deadline The call is garenteed to end after this time point. If no deadline is provided, the the call blocks indefinitely.
* @return available data for call_id after the call returned (same as calling getLength(call_id) ). * @return available data for call_id after the call returned (same as calling getLength(call_id) ).
*/ */
size_t waitForDataAvailable(const std::string &call_id, const size_t min_data_length = 0, const std::chrono::high_resolution_clock::time_point& deadline = std::chrono::high_resolution_clock::time_point() ) const; size_t waitForDataAvailable(const std::string &call_id, const size_t min_data_length, const std::chrono::high_resolution_clock::time_point& deadline) const;
/** /**
* Debug function print mEnd, mStart, mBufferSize * Debug function print mEnd, mStart, mBufferSize
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment