Skip to content

Commit

Permalink
Fix compiler crash at clang
Browse files Browse the repository at this point in the history
  • Loading branch information
bab2min committed Jul 2, 2024
1 parent d2dff8e commit f04c1bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/java/JniUtils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -924,7 +924,7 @@ namespace jni
{
return CppType{ env, v };
}
if (!env->IsInstanceOf(v, JIteratorBase::jClass)) throw std::runtime_error{ StringConcat_v<svNotInstanceOf, typeStr, svNullTerm>.data()};
if (!env->IsInstanceOf(v, JIteratorBase::jClass)) throw std::runtime_error{ ""/*StringConcat_v<svNotInstanceOf, typeStr, svNullTerm>.data()*/};
return CppType{ env, v };
}
};
Expand Down

0 comments on commit f04c1bd

Please sign in to comment.