Skip to content
Snippets Groups Projects
Commit 3eef1ee6 authored by Adam Wardynski's avatar Adam Wardynski
Browse files

Removing ? ? op

parent def7cb39
Branches
No related merge requests found
......@@ -520,15 +520,6 @@ condit_sym
op.reset(new Wccl::Conditional<Wccl::TSet>(test, p_true));
}
}
| Q_MARK
(p_true = sym_set_operators [tagset, vars] |
p_true = condit_sym [tagset, vars])
Q_MARK
(test = logical_predicates [tagset, vars] |
test = condit_bool [tagset, vars])
{
op.reset(new Wccl::Conditional<Wccl::TSet>(test, p_true));
}
;
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
......@@ -651,15 +642,6 @@ condit_str
op.reset(new Wccl::Conditional<Wccl::StrSet>(test, p_true));
}
}
| Q_MARK
(p_true = string_operators [tagset, vars] |
p_true = condit_str [tagset, vars])
Q_MARK
(test = logical_predicates [tagset, vars] |
test = condit_bool [tagset, vars])
{
op.reset(new Wccl::Conditional<Wccl::StrSet>(test, p_true));
}
;
// ----------------------------------------------------------------------------
......@@ -899,15 +881,6 @@ condit_bool
op.reset(new Wccl::Conditional<Wccl::Bool>(test, p_true));
}
}
| Q_MARK
(p_true = logical_predicates [tagset, vars] |
p_true = condit_bool [tagset, vars])
Q_MARK
(test = logical_predicates [tagset, vars] |
test = condit_bool [tagset, vars])
{
op.reset(new Wccl::Conditional<Wccl::Bool>(test, p_true));
}
;
///////////////////////////////////////////////////////////////////////////////
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment