File tree 2 files changed +2
-8
lines changed 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,8 @@ Author: Diffblue Ltd
14
14
struct bv_encodingt final
15
15
{
16
16
// number of bits to encode heap object addresses
17
- std::size_t object_bits;
18
- bool is_object_bits_default;
19
-
20
- static const std::size_t default_object_bits = 8 ;
17
+ std::size_t object_bits = 8 ;
18
+ bool is_object_bits_default = true ;
21
19
};
22
20
23
21
#endif // CPROVER_UTIL_BV_ENCODING_H
Original file line number Diff line number Diff line change @@ -771,10 +771,6 @@ bool configt::set(const cmdlinet &cmdline)
771
771
772
772
cpp.cpp_standard =cppt::default_cpp_standard ();
773
773
774
- bv_encoding.object_bits =bv_encoding.default_object_bits ;
775
- // This will allow us to override by language defaults later.
776
- bv_encoding.is_object_bits_default =true ;
777
-
778
774
ansi_c.single_precision_constant =false ;
779
775
ansi_c.for_has_scope =true ; // C99 or later
780
776
ansi_c.ts_18661_3_Floatn_types =false ;
You can’t perform that action at this time.
0 commit comments