Skip to content

Commit 0346d22

Browse files
author
Cruz Monrreal
authored
Merge pull request #7727 from 0xc0170/fix_#7702
CircularBuffer: volatile specifier removal
2 parents c52d49c + 7a44185 commit 0346d22

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

platform/CircularBuffer.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,9 @@ class CircularBuffer {
194194

195195
private:
196196
T _pool[BufferSize];
197-
volatile CounterType _head;
198-
volatile CounterType _tail;
199-
volatile bool _full;
197+
CounterType _head;
198+
CounterType _tail;
199+
bool _full;
200200
};
201201

202202
/**@}*/

0 commit comments

Comments
 (0)