ReturnSeparatedFromComputationInspection: support parentheses

This commit is contained in:
Tagir Valeev
2018-07-06 13:58:44 +07:00
parent d516456163
commit 79ab032b1b
3 changed files with 4 additions and 4 deletions
@@ -15,6 +15,6 @@ class T {
/* inline */
return "#"; // return comment
}
return s; // return comment
return (s); // return comment
}
}
@@ -11,6 +11,6 @@ class T {
else if (s.startsWith("#")) {
s = "#"; /* inline */
}
ret<caret>urn s; // return comment
ret<caret>urn (s); // return comment
}
}