We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09da582 commit 217ba59Copy full SHA for 217ba59
android/src/main/cpp/cpp-adapter.cpp
@@ -70,7 +70,7 @@ struct MultithreadingModule : jni::JavaClass<MultithreadingModule> {
70
__android_log_write(ANDROID_LOG_INFO, TAG, "Creating JSExecutorFactory..");
71
try {
72
// JNI needs to attach this thread because this function is being called from a different Thread
73
- ThreadScope scope;
+ __unused ThreadScope scope; // RAII
74
75
std::shared_ptr<react::ExecutorDelegate> delegate = std::shared_ptr<react::ExecutorDelegate>();
76
std::shared_ptr<react::MessageQueueThread> jsQueue = std::shared_ptr<react::MessageQueueThread>();
0 commit comments