mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-06-03 17:21:19 +00:00
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…
x
Reference in New Issue
Block a user