Skip to content

Commit

Permalink
format...
Browse files Browse the repository at this point in the history
  • Loading branch information
ahiuchingau committed Nov 12, 2024
1 parent b5be4ef commit c403b95
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions stm32-modules/include/common/core/circular_buffer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ class CircularBuffer {
using BackingStore = std::array<T, MaxSize>;

explicit CircularBuffer(bool allow_overwrite = false)
: _buffer(BackingStore()),
_overwrite(allow_overwrite) {}
: _buffer(BackingStore()), _overwrite(allow_overwrite) {}

CircularBuffer(CircularBuffer& other) = delete;
auto operator=(CircularBuffer& other) -> CircularBuffer& = delete;
Expand Down

0 comments on commit c403b95

Please sign in to comment.