diff --git a/platform/CircularBuffer.h b/platform/CircularBuffer.h index accb3abce9..2a9a310b87 100644 --- a/platform/CircularBuffer.h +++ b/platform/CircularBuffer.h @@ -194,9 +194,9 @@ public: private: T _pool[BufferSize]; - volatile CounterType _head; - volatile CounterType _tail; - volatile bool _full; + CounterType _head; + CounterType _tail; + bool _full; }; /**@}*/