Skip to content

Commit 43af4a2

Browse files
fix astyle
1 parent f5d2d7f commit 43af4a2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

platform/include/platform/CircularBuffer.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ class CircularBuffer {
112112
* @param src Data to be pushed to the buffer.
113113
* @param len Number of items to be pushed to the buffer.
114114
*/
115-
void push(const T* src, CounterType len)
115+
void push(const T *src, CounterType len)
116116
{
117117
core_util_critical_section_enter();
118118

@@ -169,7 +169,7 @@ class CircularBuffer {
169169
* @param data Container to store the data to be popped from the buffer.
170170
* @return True if data popped.
171171
*/
172-
bool pop(T& data)
172+
bool pop(T &data)
173173
{
174174
bool data_popped = false;
175175

@@ -196,7 +196,7 @@ class CircularBuffer {
196196
*
197197
* @return The number of elements popped.
198198
*/
199-
CounterType pop(T* dest, CounterType len)
199+
CounterType pop(T *dest, CounterType len)
200200
{
201201
if (len == 0) {
202202
return 0;

0 commit comments

Comments
 (0)