File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,8 @@ class java_bytecode_languaget:public languaget
113
113
virtual ~java_bytecode_languaget ();
114
114
java_bytecode_languaget (
115
115
std::unique_ptr<select_pointer_typet> pointer_type_selector)
116
- : threading_support(false ),
116
+ : language_options_initialized(false ),
117
+ threading_support (false ),
117
118
assume_inputs_non_null(false ),
118
119
object_factory_parameters(),
119
120
max_user_array_length(0 ),
@@ -179,6 +180,7 @@ class java_bytecode_languaget:public languaget
179
180
bool do_ci_lazy_method_conversion (symbol_tablet &);
180
181
const select_pointer_typet &get_pointer_type_selector () const ;
181
182
183
+ bool language_options_initialized;
182
184
irep_idt main_class;
183
185
std::vector<irep_idt> main_jar_classes;
184
186
java_class_loadert java_class_loader;
Original file line number Diff line number Diff line change @@ -184,9 +184,6 @@ class languaget:public messaget
184
184
185
185
languaget () { }
186
186
virtual ~languaget () { }
187
-
188
- protected:
189
- bool language_options_initialized=false ;
190
187
};
191
188
192
189
#endif // CPROVER_UTIL_LANGUAGE_H
You can’t perform that action at this time.
0 commit comments