File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
platform/include/platform Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ class CircularBuffer {
112
112
* @param src Data to be pushed to the buffer.
113
113
* @param len Number of items to be pushed to the buffer.
114
114
*/
115
- void push (const T* src, CounterType len)
115
+ void push (const T * src, CounterType len)
116
116
{
117
117
core_util_critical_section_enter ();
118
118
@@ -169,7 +169,7 @@ class CircularBuffer {
169
169
* @param data Container to store the data to be popped from the buffer.
170
170
* @return True if data popped.
171
171
*/
172
- bool pop (T& data)
172
+ bool pop (T & data)
173
173
{
174
174
bool data_popped = false ;
175
175
@@ -196,7 +196,7 @@ class CircularBuffer {
196
196
*
197
197
* @return The number of elements popped.
198
198
*/
199
- CounterType pop (T* dest, CounterType len)
199
+ CounterType pop (T * dest, CounterType len)
200
200
{
201
201
if (len == 0 ) {
202
202
return 0 ;
You can’t perform that action at this time.
0 commit comments