Update util.cpp

pull/5/head
SChernykh 2021-08-24 13:22:56 +02:00
parent 05d336c8e9
commit 15354e5a88
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ struct BackgroundJobTracker::Impl
}
uv_mutex_t m_lock;
std::map<const char*, int32_t> m_jobs;
std::map<std::string, int32_t> m_jobs;
};
BackgroundJobTracker::BackgroundJobTracker() : m_impl(new Impl())