mirror of https://github.com/AxioDL/metaforce.git
Merge pull request #168 from lioncash/bind
SpecBase: Remove redundant std::bind
This commit is contained in:
commit
1cfe88fab1
|
@ -1194,7 +1194,7 @@ void SpecBase::beginBackgroundIndex() {
|
|||
cancelBackgroundIndex();
|
||||
clearTagCache();
|
||||
m_backgroundRunning = true;
|
||||
m_backgroundIndexTh = std::thread(std::bind(&SpecBase::backgroundIndexProc, this));
|
||||
m_backgroundIndexTh = std::thread(&SpecBase::backgroundIndexProc, this);
|
||||
}
|
||||
|
||||
void SpecBase::waitForIndexComplete() const {
|
||||
|
|
Loading…
Reference in New Issue