Commit e54dab66 authored by Simon Warta's avatar Simon Warta Committed by Andrew Twyman

Avoid unused variable warning when compiling djinni_support.cpp (#319)

parent b55ac101
......@@ -58,7 +58,7 @@ void jniInit(JavaVM * jvm) {
for (const auto & initializer : JniClassInitializer::get_all()) {
initializer();
}
} catch (const std::exception & e) {
} catch (const std::exception &) {
// Default exception handling only, since non-default might not be safe if init
// is incomplete.
jniDefaultSetPendingFromCurrent(jniGetThreadEnv(), __func__);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment