Merge pull request #7727 from 0xc0170/fix_#7702

CircularBuffer: volatile specifier removal
pull/7747/head
Cruz Monrreal 2018-08-09 10:19:17 -05:00 committed by GitHub
commit 0346d224e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -194,9 +194,9 @@ public:
private:
T _pool[BufferSize];
volatile CounterType _head;
volatile CounterType _tail;
volatile bool _full;
CounterType _head;
CounterType _tail;
bool _full;
};
/**@}*/