Format code using astyle google format

Commands used:
astyle --style=google --indent=spaces=2 --keep-one-line-blocks src/*.cpp
astyle --style=google --indent=spaces=2 --keep-one-line-blocks src/*.h
This commit is contained in:
Aaron Kling
2024-03-26 13:43:58 -05:00
parent ed8ad15161
commit c4683d90a9
157 changed files with 11313 additions and 11352 deletions

View File

@@ -4,7 +4,7 @@
#include "zm_signal.h"
DecoderThread::DecoderThread(Monitor *monitor) :
monitor_(monitor), terminate_(false) {
monitor_(monitor), terminate_(false) {
thread_ = std::thread(&DecoderThread::Run, this);
}