File tree 1 file changed +0
-13
lines changed 1 file changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -4565,11 +4565,6 @@ inline void validate_expr(const let_exprt &value)
4565
4565
class quantifier_exprt :public binary_predicate_exprt
4566
4566
{
4567
4567
public:
4568
- explicit quantifier_exprt (const irep_idt &_id):binary_predicate_exprt(_id)
4569
- {
4570
- op0 ()=symbol_exprt ();
4571
- }
4572
-
4573
4568
quantifier_exprt (
4574
4569
const irep_idt &_id,
4575
4570
const symbol_exprt &_symbol,
@@ -4635,10 +4630,6 @@ inline void validate_expr(const quantifier_exprt &value)
4635
4630
class forall_exprt :public quantifier_exprt
4636
4631
{
4637
4632
public:
4638
- forall_exprt ():quantifier_exprt(ID_forall)
4639
- {
4640
- }
4641
-
4642
4633
forall_exprt (const symbol_exprt &_symbol, const exprt &_where)
4643
4634
: quantifier_exprt(ID_forall, _symbol, _where)
4644
4635
{
@@ -4649,10 +4640,6 @@ class forall_exprt:public quantifier_exprt
4649
4640
class exists_exprt :public quantifier_exprt
4650
4641
{
4651
4642
public:
4652
- exists_exprt ():quantifier_exprt(ID_exists)
4653
- {
4654
- }
4655
-
4656
4643
exists_exprt (const symbol_exprt &_symbol, const exprt &_where)
4657
4644
: quantifier_exprt(ID_exists, _symbol, _where)
4658
4645
{
You can’t perform that action at this time.
0 commit comments