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 8e99272 commit 133f0f2Copy full SHA for 133f0f2
src/java_bytecode/java_string_library_preprocess.cpp
@@ -1517,7 +1517,8 @@ codet java_string_library_preprocesst::make_object_get_class_code(
1517
fun_call.lhs()=class1;
1518
fun_call.arguments().push_back(string1);
1519
code_typet fun_type;
1520
- fun_type.return_type()=string1.type();
+ fun_type.parameters().push_back(code_typet::parametert(string_ptr_type));
1521
+ fun_type.return_type()=class_type;
1522
fun_call.function().type()=fun_type;
1523
code.add(fun_call);
1524
0 commit comments