File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -29,10 +29,6 @@ std::vector<typet> parse_list_types(
29
29
const char opening_bracket,
30
30
const char closing_bracket);
31
31
32
- size_t find_closing_semi_colon_for_reference_type (
33
- const std::string src,
34
- size_t starting_point = 0 );
35
-
36
32
typet java_int_type ()
37
33
{
38
34
return signedbv_typet (32 );
Original file line number Diff line number Diff line change @@ -82,6 +82,10 @@ std::vector<typet> java_generic_type_from_string(
82
82
83
83
typet java_bytecode_promotion (const typet &);
84
84
exprt java_bytecode_promotion (const exprt &);
85
+ size_t find_closing_semi_colon_for_reference_type (
86
+ const std::string src,
87
+ size_t starting_point = 0 );
88
+
85
89
86
90
bool is_java_array_tag (const irep_idt &tag);
87
91
bool is_valid_java_array (const struct_typet &);
Original file line number Diff line number Diff line change 13
13
14
14
#include < testing-utils/catch.hpp>
15
15
16
- #include < java_bytecode/java_types.cpp >
16
+ #include < java_bytecode/java_types.h >
17
17
#include < java_bytecode/java_utils.h>
18
18
19
19
SCENARIO (" Test that the generic signature delimiter lookup works reliably" ,
You can’t perform that action at this time.
0 commit comments