Skip to content

Commit f04c1bd

Browse files
committed
Fix compiler crash at clang
1 parent d2dff8e commit f04c1bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bindings/java/JniUtils.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -924,7 +924,7 @@ namespace jni
924924
{
925925
return CppType{ env, v };
926926
}
927-
if (!env->IsInstanceOf(v, JIteratorBase::jClass)) throw std::runtime_error{ StringConcat_v<svNotInstanceOf, typeStr, svNullTerm>.data()};
927+
if (!env->IsInstanceOf(v, JIteratorBase::jClass)) throw std::runtime_error{ ""/*StringConcat_v<svNotInstanceOf, typeStr, svNullTerm>.data()*/};
928928
return CppType{ env, v };
929929
}
930930
};

0 commit comments

Comments
 (0)