forked from OSchip/llvm-project
parent
6186c96765
commit
298087bc25
|
@ -2933,6 +2933,9 @@ QualType Sema::FindCompositePointerType(SourceLocation Loc,
|
|||
}
|
||||
|
||||
ExprResult Sema::MaybeBindToTemporary(Expr *E) {
|
||||
if (!E)
|
||||
return ExprError();
|
||||
|
||||
if (!Context.getLangOptions().CPlusPlus)
|
||||
return Owned(E);
|
||||
|
||||
|
|
Loading…
Reference in New Issue