Test commit: reformat comment.

llvm-svn: 169126
This commit is contained in:
Edwin Vane 2012-12-03 14:32:13 +00:00
parent cba0f3dd7c
commit 0254657c2d
1 changed files with 3 additions and 3 deletions

View File

@ -92,9 +92,9 @@ static std::string getText(const SourceManager &SourceManager, const T &Node) {
return std::string(Text, End.second - Start.second);
}
// Return true if expr needs to be put in parens when it is an
// argument of a prefix unary operator, e.g. when it is a binary or
// ternary operator syntactically.
// Return true if expr needs to be put in parens when it is an argument of a
// prefix unary operator, e.g. when it is a binary or ternary operator
// syntactically.
static bool needParensAfterUnaryOperator(const Expr &ExprNode) {
if (dyn_cast<clang::BinaryOperator>(&ExprNode) ||
dyn_cast<clang::ConditionalOperator>(&ExprNode)) {