to_string: remove extra parentheses
* src/ltlvisit/tostring.cc: Fix duplicate parentheses around argument of unary operators when full_parent=true.
This commit is contained in:
parent
0fc3c6bcff
commit
da5f7ac3aa
1 changed files with 2 additions and 2 deletions
|
|
@ -593,10 +593,10 @@ namespace spot
|
|||
break;
|
||||
}
|
||||
|
||||
if (need_parent || full_parent_)
|
||||
if (need_parent)
|
||||
openp();
|
||||
uo->child()->accept(*this);
|
||||
if (need_parent || full_parent_)
|
||||
if (need_parent)
|
||||
closep();
|
||||
|
||||
switch (uo->op())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue