Apply modernize-redundant-void-arg

This commit is contained in:
Flössie
2016-10-12 18:24:14 +02:00
parent 0731975ff0
commit 19de9d1efa
5 changed files with 10 additions and 10 deletions

View File

@@ -167,7 +167,7 @@ PreviewLoader::PreviewLoader():
{
}
PreviewLoader* PreviewLoader::getInstance(void)
PreviewLoader* PreviewLoader::getInstance()
{
static PreviewLoader instance_;
return &instance_;
@@ -191,7 +191,7 @@ void PreviewLoader::add(int dir_id, const Glib::ustring& dir_entry, PreviewLoade
}
}
void PreviewLoader::removeAllJobs(void)
void PreviewLoader::removeAllJobs()
{
DEBUG("stop %d", impl_->nConcurrentThreads);
MyMutex::MyLock lock(impl_->mutex_);