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 b57022c commit 05eaa8dCopy full SHA for 05eaa8d
jbmc/src/java_bytecode/java_string_library_preprocess.cpp
@@ -1858,6 +1858,14 @@ void java_string_library_preprocesst::initialize_conversion_table()
1858
std::placeholders::_2,
1859
std::placeholders::_3,
1860
std::placeholders::_4);
1861
+
1862
+ std::string format_signature = "java::org.cprover.CProverString.format:(";
1863
+ for(std::size_t i = 0; i < MAX_FORMAT_ARGS + 1; ++i)
1864
+ format_signature += "Ljava/lang/String;";
1865
+ format_signature += ")Ljava/lang/String;";
1866
+ cprover_equivalent_to_java_string_returning_function[format_signature] =
1867
+ ID_cprover_string_format_func;
1868
1869
cprover_equivalent_to_java_function
1870
["java::java.lang.String.hashCode:()I"]=
1871
ID_cprover_string_hash_code_func;
0 commit comments