diff --git a/src/demod/DemodulatorMgr.cpp b/src/demod/DemodulatorMgr.cpp index 2eeffb1..7f0cd14 100644 --- a/src/demod/DemodulatorMgr.cpp +++ b/src/demod/DemodulatorMgr.cpp @@ -278,7 +278,7 @@ DemodulatorInstance *DemodulatorMgr::getLastDemodulatorWith(const std::string& t return nullptr; } -void DemodulatorMgr::garbageCollect(boolean forcedGC) { +void DemodulatorMgr::garbageCollect(bool forcedGC) { std::lock_guard < std::mutex > lock(deleted_demods_busy); diff --git a/src/demod/DemodulatorMgr.h b/src/demod/DemodulatorMgr.h index 42032dc..906a9d7 100644 --- a/src/demod/DemodulatorMgr.h +++ b/src/demod/DemodulatorMgr.h @@ -73,7 +73,7 @@ public: //all deleted demodulators are effectively GCed. //else: (default) the method test for effective termination //and GC one demod per call. - void garbageCollect(boolean forcedGC = false); + void garbageCollect(bool forcedGC = false); private: