bump abseil to the latest version, adapt the code all around

This commit is contained in:
Laurent Perron
2019-11-20 14:28:11 -08:00
parent 3765c971e5
commit 2ff000ab9a
147 changed files with 1982 additions and 1107 deletions

View File

@@ -120,9 +120,9 @@ VECTOR_AS_JAVA_ARRAY(double, double, Double);
if (nullptr == object_class)
return $null;
jmethodID method_id =
jenv->GetStaticMethodID(object_class,
"getCPtr",
std::string("(L" + java_class_path + ";)J").c_str());
jenv->GetStaticMethodID(
object_class, "getCPtr",
std::string("(L" + java_class_path + ";)J").c_str());
assert(method_id != nullptr);
for (int i = 0; i < jenv->GetArrayLength($input); i++) {
jobject elem = jenv->GetObjectArrayElement($input, i);