File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -84,15 +84,15 @@ struct threadpool_impl final : crossplat::threadpool
8484#if defined(__ANDROID__)
8585 static void detach_from_java (void *)
8686 {
87- crossplat:: JVM.load ()->DetachCurrentThread ();
87+ JVM.load ()->DetachCurrentThread ();
8888 }
8989#endif // __ANDROID__
9090
9191 static void * thread_start (void *arg) CPPREST_NOEXCEPT
9292 {
9393#if defined(__ANDROID__)
9494 // Calling get_jvm_env() here forces the thread to be attached.
95- crossplat:: get_jvm_env ();
95+ get_jvm_env ();
9696 pthread_cleanup_push (detach_from_java, nullptr );
9797#endif // __ANDROID__
9898 threadpool_impl* _this = reinterpret_cast <threadpool_impl*>(arg);
@@ -197,7 +197,7 @@ void threadpool::initialize_with_threads(size_t num_threads)
197197
198198#if defined(__ANDROID__)
199199void cpprest_init (JavaVM* vm) {
200- crossplat:: JVM = vm;
200+ JVM = vm;
201201}
202202#endif
203203
You can’t perform that action at this time.
0 commit comments