Skip to content

Commit 10a6d77

Browse files
committed
Change code_typet to java_method_typet
All instances of code_typet in jbmc are currently being replaced with the new type java_method_typet.
1 parent bd5ef6e commit 10a6d77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jbmc/src/java_bytecode/java_object_factory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1642,7 +1642,7 @@ void java_object_factoryt::gen_method_call_if_present(
16421642
{
16431643
if(const auto func = symbol_table.lookup(method_name))
16441644
{
1645-
const code_typet &type = to_code_type(func->type);
1645+
const java_method_typet &type = to_java_method_type(func->type);
16461646
code_function_callt fun_call;
16471647
fun_call.function() = func->symbol_expr();
16481648
if(type.has_this())

0 commit comments

Comments
 (0)