diff options
| author | LC <mathew1800@gmail.com> | 2020-07-22 16:24:05 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-22 16:24:05 -0400 |
| commit | 8e99c77510dc88b411d472c83d5787645b264494 (patch) | |
| tree | d53680b281553f180f57d4420395f1e5c3f8c153 /Source/Android/jni/GameList/GameFileCache.cpp | |
| parent | 92d24aec2e45fc65767444b220108595f8e74b94 (diff) | |
| parent | 9ac24a05800c4960230c1f6f5f62412177717f9c (diff) | |
Merge pull request #8972 from Ebola16/CT
Android: Some simple Clang-Tidy suggestions
Diffstat (limited to 'Source/Android/jni/GameList/GameFileCache.cpp')
| -rw-r--r-- | Source/Android/jni/GameList/GameFileCache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Android/jni/GameList/GameFileCache.cpp b/Source/Android/jni/GameList/GameFileCache.cpp index 0d8aea8285..f6b81ae834 100644 --- a/Source/Android/jni/GameList/GameFileCache.cpp +++ b/Source/Android/jni/GameList/GameFileCache.cpp @@ -89,7 +89,7 @@ JNIEXPORT jboolean JNICALL Java_org_dolphinemu_dolphinemu_model_GameFileCache_up for (jsize i = 0; i < size; ++i) { - const jstring path = reinterpret_cast<jstring>(env->GetObjectArrayElement(folder_paths, i)); + const auto path = reinterpret_cast<jstring>(env->GetObjectArrayElement(folder_paths, i)); folder_paths_vector.push_back(GetJString(env, path)); env->DeleteLocalRef(path); } |
