summaryrefslogtreecommitdiff
path: root/Source/Android/jni/GameList/GameFileCache.cpp
diff options
context:
space:
mode:
authorRyan Meredith <rwm@udel.edu>2020-07-22 15:38:45 -0400
committerRyan Meredith <rwm@udel.edu>2020-07-22 15:38:45 -0400
commit9ac24a05800c4960230c1f6f5f62412177717f9c (patch)
treed53680b281553f180f57d4420395f1e5c3f8c153 /Source/Android/jni/GameList/GameFileCache.cpp
parent92d24aec2e45fc65767444b220108595f8e74b94 (diff)
Android: Some simple Clang-Tidy suggestions
Diffstat (limited to 'Source/Android/jni/GameList/GameFileCache.cpp')
-rw-r--r--Source/Android/jni/GameList/GameFileCache.cpp2
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);
}