File tree Expand file tree Collapse file tree 4 files changed +20
-17
lines changed Expand file tree Collapse file tree 4 files changed +20
-17
lines changed Original file line number Diff line number Diff line change @@ -84,12 +84,13 @@ class value_set_fivrt
84
84
typedef objmapt::iterator iterator;
85
85
86
86
const_iterator find (unsigned k) { return objmap.find (k); }
87
- iterator begin (void ) { return objmap.begin (); }
88
- const_iterator begin (void ) const { return objmap.begin (); }
89
- iterator end (void ) { return objmap.end (); }
90
- const_iterator end (void ) const { return objmap.end (); }
91
- size_t size (void ) const { return objmap.size (); }
92
- void clear (void ) { objmap.clear (); validity_ranges.clear (); }
87
+ iterator begin () { return objmap.begin (); }
88
+ const_iterator begin () const { return objmap.begin (); }
89
+ iterator end () { return objmap.end (); }
90
+ const_iterator end () const { return objmap.end (); }
91
+ size_t size () const { return objmap.size (); }
92
+ bool empty () const { return objmap.empty (); }
93
+ void clear () { objmap.clear (); validity_ranges.clear (); }
93
94
94
95
objectt &operator [](unsigned k)
95
96
{
@@ -112,7 +113,7 @@ class value_set_fivrt
112
113
unsigned function;
113
114
unsigned from, to;
114
115
115
- validity_ranget (void ):
116
+ validity_ranget ():
116
117
function (0 ), from(0 ), to(0 )
117
118
{
118
119
}
@@ -318,7 +319,7 @@ class value_set_fivrt
318
319
const exprt &code,
319
320
const namespacet &ns);
320
321
321
- bool handover (void );
322
+ bool handover ();
322
323
323
324
void assign (
324
325
const exprt &lhs,
Original file line number Diff line number Diff line change @@ -1508,7 +1508,7 @@ bool value_set_fivrnst::object_map_dt::is_valid_at(
1508
1508
return false ;
1509
1509
}
1510
1510
1511
- bool value_set_fivrnst::handover (void )
1511
+ bool value_set_fivrnst::handover ()
1512
1512
{
1513
1513
bool changed=false ;
1514
1514
Original file line number Diff line number Diff line change @@ -85,12 +85,13 @@ class value_set_fivrnst
85
85
typedef objmapt::iterator iterator;
86
86
87
87
const_iterator find (unsigned k) { return objmap.find (k); }
88
- iterator begin (void ) { return objmap.begin (); }
89
- const_iterator begin (void ) const { return objmap.begin (); }
90
- iterator end (void ) { return objmap.end (); }
91
- const_iterator end (void ) const { return objmap.end (); }
92
- size_t size (void ) const { return objmap.size (); }
93
- void clear (void ) { objmap.clear (); validity_ranges.clear (); }
88
+ iterator begin () { return objmap.begin (); }
89
+ const_iterator begin () const { return objmap.begin (); }
90
+ iterator end () { return objmap.end (); }
91
+ const_iterator end () const { return objmap.end (); }
92
+ size_t size () const { return objmap.size (); }
93
+ bool empty () const { return objmap.empty (); }
94
+ void clear () { objmap.clear (); validity_ranges.clear (); }
94
95
95
96
objectt &operator [](unsigned k)
96
97
{
@@ -113,7 +114,7 @@ class value_set_fivrnst
113
114
unsigned function;
114
115
unsigned from, to;
115
116
116
- validity_ranget (void ):
117
+ validity_ranget ():
117
118
function (0 ), from(0 ), to(0 )
118
119
{
119
120
}
@@ -315,7 +316,7 @@ class value_set_fivrnst
315
316
const exprt &code,
316
317
const namespacet &ns);
317
318
318
- bool handover (void );
319
+ bool handover ();
319
320
320
321
void assign (
321
322
const exprt &lhs,
Original file line number Diff line number Diff line change 15
15
#include < stack>
16
16
17
17
#include < util/threeval.h>
18
+ #include < util/invariant.h>
18
19
19
20
#include " satcheck_minisat2.h"
20
21
You can’t perform that action at this time.
0 commit comments