Merge pull request #555 from lospheris/master

Change boolean to bool
This commit is contained in:
Vincent Sonnier 2017-06-02 06:21:15 +02:00 committed by GitHub
commit 695d00d966
2 changed files with 2 additions and 2 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);

View File

@ -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: