Skip to content
Snippets Groups Projects
Commit 94066cf9 authored by Fariborz Jahanian's avatar Fariborz Jahanian
Browse files

Make a small crash preventing change.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@212291 91177308-0d34-0410-b5e6-96231b3b80d8
parent 846404f0
No related branches found
No related tags found
No related merge requests found
......@@ -2036,8 +2036,8 @@ Sema::InstantiateClass(SourceLocation PointOfInstantiation,
Expr *Init = NewInit.get();
assert((!Init || !isa<ParenListExpr>(Init)) &&
"call-style init in class");
ActOnFinishCXXInClassMemberInitializer(NewField, Init->getLocStart(),
Init);
ActOnFinishCXXInClassMemberInitializer(NewField,
Init ? Init->getLocStart() : SourceLocation(), Init);
}
}
// Instantiate late parsed attributes, and attach them to their decls.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment