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 e66f76f commit b72b968Copy full SHA for b72b968
jbmc/src/java_bytecode/java_types.cpp
@@ -167,11 +167,6 @@ bool is_java_array_tag(const irep_idt& tag)
167
return has_prefix(id2string(tag), "java::array[");
168
}
169
170
-bool is_reference_type(const char t)
171
-{
172
- return 'a'==t;
173
-}
174
-
175
typet java_type_from_char(char t)
176
{
177
switch(t)
jbmc/src/java_bytecode/java_types.h
@@ -250,8 +250,6 @@ typet &java_array_element_type(symbol_typet &array_symbol);
250
bool is_java_array_type(const typet &type);
251
bool is_multidim_java_array_type(const typet &type);
252
253
-bool is_reference_type(char t);
254
255
// i integer
256
// l long
257
// s short
0 commit comments