We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3b44c7 commit 0cc5ae6Copy full SHA for 0cc5ae6
src/java_bytecode/java_string_library_preprocess.h
@@ -47,8 +47,9 @@ class java_string_library_preprocesst:public messaget
47
bool is_known_string_type(irep_idt class_name);
48
49
private:
50
- // We forbid copies of the object by making the copy operator private.
51
- java_string_library_preprocesst(const java_string_library_preprocesst &);
+ // We forbid copies of the object
+ java_string_library_preprocesst(
52
+ const java_string_library_preprocesst &)=delete;
53
54
static bool java_type_matches_tag(const typet &type, const std::string &tag);
55
static bool is_java_string_pointer_type(const typet &type);
0 commit comments