mirror of https://github.com/ARMmbed/mbed-os.git
code style adopted
parent
c1ab43ce76
commit
830db6a5a0
|
|
@ -112,12 +112,10 @@ public:
|
|||
if (!_full) {
|
||||
if (_head < _tail) {
|
||||
elements = BufferSize + _head - _tail;
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
elements = _head - _tail;
|
||||
}
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
elements = BufferSize;
|
||||
}
|
||||
core_util_critical_section_exit();
|
||||
|
|
|
|||
Loading…
Reference in New Issue