Skip to content

Commit 3715049

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 e6218f8 commit 3715049

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
@@ -1621,7 +1621,7 @@ void java_object_factoryt::gen_method_call(
16211621
{
16221622
if(const auto func = symbol_table.lookup(method_name))
16231623
{
1624-
const code_typet &type = to_code_type(func->type);
1624+
const java_method_typet &type = to_java_method_type(func->type);
16251625
code_function_callt fun_call;
16261626
fun_call.function() = func->symbol_expr();
16271627
if(type.has_this())

0 commit comments

Comments
 (0)