File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -385,9 +385,9 @@ void java_bytecode_convert_methodt::convert(
385
385
386
386
// Obtain a std::vector of code_typet::parametert objects from the
387
387
// (function) type of the symbol
388
- typet member_type=method_symbol. type ;
389
- member_type. set (ID_C_class, class_symbol. name );
390
- code_typet & code_type= to_code_type (member_type );
388
+
389
+ code_typet code_type= to_code_type (method_symbol. type );
390
+ code_type. set (ID_C_class, class_symbol. name );
391
391
method_return_type=code_type.return_type ();
392
392
code_typet::parameterst ¶meters=code_type.parameters ();
393
393
@@ -547,7 +547,7 @@ void java_bytecode_convert_methodt::convert(
547
547
id2string (m.base_name ) + " ()" ;
548
548
}
549
549
550
- method_symbol.type =member_type ;
550
+ method_symbol.type =code_type ;
551
551
552
552
current_method=method_symbol.name ;
553
553
method_has_this=code_type.has_this ();
You can’t perform that action at this time.
0 commit comments