File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -184,3 +184,9 @@ bool java_bytecode_typecheck(
184
184
// fail for now
185
185
return true ;
186
186
}
187
+
188
+ // Static members of java_bytecode_typecheckt:
189
+ std::map<irep_idt, irep_idt>
190
+ java_bytecode_typecheckt::string_literal_to_symbol_name;
191
+ std::map<irep_idt, size_t >
192
+ java_bytecode_typecheckt::escaped_string_literal_count;
Original file line number Diff line number Diff line change @@ -64,8 +64,8 @@ class java_bytecode_typecheckt:public typecheckt
64
64
virtual std::string to_string (const typet &type);
65
65
66
66
std::set<irep_idt> already_typechecked;
67
- std::map<irep_idt, irep_idt> string_literal_to_symbol_name;
68
- std::map<irep_idt, size_t > escaped_string_literal_count;
67
+ static std::map<irep_idt, irep_idt> string_literal_to_symbol_name;
68
+ static std::map<irep_idt, size_t > escaped_string_literal_count;
69
69
};
70
70
71
71
#endif // CPROVER_JAVA_BYTECODE_JAVA_BYTECODE_TYPECHECK_H
You can’t perform that action at this time.
0 commit comments