From 3334538e649d4b5dd28dee4071b67053a56dd497 Mon Sep 17 00:00:00 2001 From: vsonnier Date: Sat, 13 Jan 2018 12:17:02 +0100 Subject: [PATCH] Fix boolean usage instead of bool (we are not Java, are we ?) --- src/audio/AudioThread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio/AudioThread.h b/src/audio/AudioThread.h index 540a8b2..dfb2e5e 100644 --- a/src/audio/AudioThread.h +++ b/src/audio/AudioThread.h @@ -21,7 +21,7 @@ public: int channels; float peak; int type; - boolean is_squelch_active = false; + bool is_squelch_active = false; std::vector data;