id_cache.cpp: use unordered_map for s_java_load_callback_stages

This commit is contained in:
SachinVin 2021-04-29 23:51:55 +05:30
parent 455cd56343
commit 9669dd647a

View File

@ -34,7 +34,7 @@ static jmethodID s_request_camera_permission;
static jmethodID s_request_mic_permission;
static jmethodID s_disk_cache_load_progress;
static std::map<VideoCore::LoadCallbackStage, jobject> s_java_load_callback_stages;
static std::unordered_map<VideoCore::LoadCallbackStage, jobject> s_java_load_callback_stages;
namespace IDCache {