зеркало из https://github.com/microsoft/clang-1.git
Harden Sema::MaybeBindTotemporary.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@117954 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
de5b17ea3c
Коммит
19cc1c715e
|
@ -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);
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче