mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #7727 from 0xc0170/fix_#7702
CircularBuffer: volatile specifier removalpull/7747/head
commit
0346d224e8
|
@ -194,9 +194,9 @@ public:
|
|||
|
||||
private:
|
||||
T _pool[BufferSize];
|
||||
volatile CounterType _head;
|
||||
volatile CounterType _tail;
|
||||
volatile bool _full;
|
||||
CounterType _head;
|
||||
CounterType _tail;
|
||||
bool _full;
|
||||
};
|
||||
|
||||
/**@}*/
|
||||
|
|
Loading…
Reference in New Issue