Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
stas-sl committed Oct 8, 2024
1 parent 53e20bd commit bff59ba
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions components/sound_level_meter/sound_level_meter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -359,9 +359,7 @@ void SOS_Filter::reset() {

/* BufferStack */

template<typename T>
BufferStack<T>::BufferStack(uint32_t buffer_size)
: buffer_size_(buffer_size) {
template<typename T> BufferStack<T>::BufferStack(uint32_t buffer_size) : buffer_size_(buffer_size) {
this->buffers_.resize(1);
this->buffers_[0].resize(buffer_size);
}
Expand Down

0 comments on commit bff59ba

Please sign in to comment.