mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
remove a few default constructors
This commit is contained in:
parent
22d9bfad35
commit
a62fede64b
16 changed files with 16 additions and 21 deletions
|
@ -170,8 +170,6 @@ namespace recfun {
|
|||
vector<branch> m_branches;
|
||||
|
||||
public:
|
||||
case_state() : m_reg(), m_branches() {}
|
||||
|
||||
bool empty() const { return m_branches.empty(); }
|
||||
|
||||
branch pop_branch() {
|
||||
|
|
|
@ -446,7 +446,7 @@ public:
|
|||
/*
|
||||
Default constructor of invalid info.
|
||||
*/
|
||||
info() {}
|
||||
info() = default;
|
||||
|
||||
/*
|
||||
Used for constructing either an invalid info that is only used to indicate uninitialized entry, or valid but unknown info value.
|
||||
|
|
|
@ -33,7 +33,7 @@ namespace bv {
|
|||
unsigned nw = 0;
|
||||
unsigned mask = 0;
|
||||
|
||||
bvect() {}
|
||||
bvect() = default;
|
||||
bvect(unsigned sz) : svector(sz, (unsigned)0) {}
|
||||
void set_bw(unsigned bw);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue