mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
Remove unnecessary (and confusing) parantheses around variable name in its declaration.
Also fixes GCC warning [-Wparentheses].
This commit is contained in:
parent
f02d031d11
commit
9c5a0ee810
2 changed files with 2 additions and 2 deletions
|
@ -6768,7 +6768,7 @@ namespace smt {
|
|||
expr * sub2;
|
||||
if (u.re.is_to_re(re, sub1)) {
|
||||
SASSERT(u.str.is_string(sub1));
|
||||
zstring(str);
|
||||
zstring str;
|
||||
u.str.is_string(sub1, str);
|
||||
lens.insert(str.length());
|
||||
} else if (u.re.is_concat(re, sub1, sub2)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue