Wrap to 80 columns. No behavior change.

llvm-svn: 229450
This commit is contained in:
Nico Weber 2015-02-16 22:35:45 +00:00
parent c60aa71aa2
commit 964d332f0a

View File

@ -5214,10 +5214,11 @@ static void noteOperatorArrows(Sema &S,
}
}
ExprResult
Sema::ActOnStartCXXMemberReference(Scope *S, Expr *Base, SourceLocation OpLoc,
tok::TokenKind OpKind, ParsedType &ObjectType,
bool &MayBePseudoDestructor) {
ExprResult Sema::ActOnStartCXXMemberReference(Scope *S, Expr *Base,
SourceLocation OpLoc,
tok::TokenKind OpKind,
ParsedType &ObjectType,
bool &MayBePseudoDestructor) {
// Since this might be a postfix expression, get rid of ParenListExprs.
ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Base);
if (Result.isInvalid()) return ExprError();