Change boolean to bool

void DemodulatorMgr::garbageCollect(boolean forcedGC)
should be 
void DemodulatorMgr::garbageCollect(bool forcedGC)
This commit is contained in:
Dell-Ray Sackett 2017-06-01 21:05:49 -07:00 committed by GitHub
parent 3604b7f1ff
commit b315bac97f
1 changed files with 1 additions and 1 deletions

View File

@ -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);