Skip to content

Commit 01a348c

Browse files
authored
Merge pull request #3050 from tautschnig/quantifier_exprt-cleanup
Remove unused quantifier_exprt default constructor
2 parents 20cba10 + 7ff7c27 commit 01a348c

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

src/util/std_expr.h

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4565,11 +4565,6 @@ inline void validate_expr(const let_exprt &value)
45654565
class quantifier_exprt:public binary_predicate_exprt
45664566
{
45674567
public:
4568-
explicit quantifier_exprt(const irep_idt &_id):binary_predicate_exprt(_id)
4569-
{
4570-
op0()=symbol_exprt();
4571-
}
4572-
45734568
quantifier_exprt(
45744569
const irep_idt &_id,
45754570
const symbol_exprt &_symbol,
@@ -4635,10 +4630,6 @@ inline void validate_expr(const quantifier_exprt &value)
46354630
class forall_exprt:public quantifier_exprt
46364631
{
46374632
public:
4638-
forall_exprt():quantifier_exprt(ID_forall)
4639-
{
4640-
}
4641-
46424633
forall_exprt(const symbol_exprt &_symbol, const exprt &_where)
46434634
: quantifier_exprt(ID_forall, _symbol, _where)
46444635
{
@@ -4649,10 +4640,6 @@ class forall_exprt:public quantifier_exprt
46494640
class exists_exprt:public quantifier_exprt
46504641
{
46514642
public:
4652-
exists_exprt():quantifier_exprt(ID_exists)
4653-
{
4654-
}
4655-
46564643
exists_exprt(const symbol_exprt &_symbol, const exprt &_where)
46574644
: quantifier_exprt(ID_exists, _symbol, _where)
46584645
{

0 commit comments

Comments
 (0)