Skip to content
Snippets Groups Projects
Commit 2ce2a860 authored by stepan's avatar stepan
Browse files

RDeparse: function needs parens

parent e01a1813
No related branches found
No related tags found
No related merge requests found
......@@ -745,6 +745,9 @@ public class RDeparse {
}
needsParens = mainOp.prec > arginfo.prec || (mainOp.prec == arginfo.prec && isLeft == mainOp.rightassoc);
break;
case FUNCTION:
needsParens = true;
break;
default:
break;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment