Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Pimenov <m@maps.me>2019-05-20 17:47:33 +0300
committerMaxim Pimenov <m@maps.me>2019-05-20 17:53:16 +0300
commitb4f84e419740a20a68f779bed67cde4fe72fdee0 (patch)
treee3a082bbdea01c8e2475138637ff6bac7e97e436 /android
parent020e73b851fb78365723a8679e4c76cb26fb10d9 (diff)
Fixed some warnings.
Diffstat (limited to 'android')
-rw-r--r--android/jni/com/mapswithme/core/logging.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/android/jni/com/mapswithme/core/logging.cpp b/android/jni/com/mapswithme/core/logging.cpp
index 257afe87ec..a5d6f37f2d 100644
--- a/android/jni/com/mapswithme/core/logging.cpp
+++ b/android/jni/com/mapswithme/core/logging.cpp
@@ -31,6 +31,7 @@ void AndroidMessage(LogLevel level, SrcPoint const & src, std::string const & s)
case LWARNING: pr = ANDROID_LOG_WARN; break;
case LERROR: pr = ANDROID_LOG_ERROR; break;
case LCRITICAL: pr = ANDROID_LOG_ERROR; break;
+ case NUM_LOG_LEVELS: break;
}
ScopedEnv env(jni::GetJVM());