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
84
84
#if defined(__ANDROID__)
85
85
static void detach_from_java (void *)
86
86
{
87
- crossplat:: JVM.load ()->DetachCurrentThread ();
87
+ JVM.load ()->DetachCurrentThread ();
88
88
}
89
89
#endif // __ANDROID__
90
90
91
91
static void * thread_start (void *arg) CPPREST_NOEXCEPT
92
92
{
93
93
#if defined(__ANDROID__)
94
94
// Calling get_jvm_env() here forces the thread to be attached.
95
- crossplat:: get_jvm_env ();
95
+ get_jvm_env ();
96
96
pthread_cleanup_push (detach_from_java, nullptr );
97
97
#endif // __ANDROID__
98
98
threadpool_impl* _this = reinterpret_cast <threadpool_impl*>(arg);
@@ -197,7 +197,7 @@ void threadpool::initialize_with_threads(size_t num_threads)
197
197
198
198
#if defined(__ANDROID__)
199
199
void cpprest_init (JavaVM* vm) {
200
- crossplat:: JVM = vm;
200
+ JVM = vm;
201
201
}
202
202
#endif
203
203
You can’t perform that action at this time.
0 commit comments