From dd04822ab3ca8998fa1dc8d33a0198097b81af5b Mon Sep 17 00:00:00 2001 From: Tristan Matthews <tristan.matthews@savoirfairelinux.com> Date: Wed, 16 Apr 2014 17:56:21 -0400 Subject: [PATCH] ringbuffer: remove default arguments We don't use them. Refs #45490 --- daemon/src/audio/ringbuffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/src/audio/ringbuffer.h b/daemon/src/audio/ringbuffer.h index 007dd9f458..02b57f7128 100644 --- a/daemon/src/audio/ringbuffer.h +++ b/daemon/src/audio/ringbuffer.h @@ -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. * @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 -- GitLab