diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2011-03-05 22:42:13 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2011-03-05 22:42:13 +0000 |
commit | 802a45332a98b71a0ef0ac83e12c8fea8ef3e887 (patch) | |
tree | 7ddf3229d9ae0d4665a42db6b36ad844e49766f6 /clang/lib/Sema/SemaDecl.cpp | |
parent | 75e7a147ae64af6910fe7fea3763247e00bf6a23 (diff) | |
download | llvm-802a45332a98b71a0ef0ac83e12c8fea8ef3e887.zip llvm-802a45332a98b71a0ef0ac83e12c8fea8ef3e887.tar.gz llvm-802a45332a98b71a0ef0ac83e12c8fea8ef3e887.tar.bz2 |
Propagate new-style exception spec information to Declarator.
llvm-svn: 127111
Diffstat (limited to 'clang/lib/Sema/SemaDecl.cpp')
-rw-r--r-- | clang/lib/Sema/SemaDecl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaDecl.cpp b/clang/lib/Sema/SemaDecl.cpp index b40d4f3..b674cc1 100644 --- a/clang/lib/Sema/SemaDecl.cpp +++ b/clang/lib/Sema/SemaDecl.cpp @@ -5758,8 +5758,8 @@ NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc, D.AddTypeInfo(DeclaratorChunk::getFunction(ParsedAttributes(), false, false, SourceLocation(), 0, 0, 0, true, SourceLocation(), - false, SourceLocation(), - false, 0,0,0, Loc, Loc, D), + EST_None, SourceLocation(), + 0, 0, 0, 0, Loc, Loc, D), SourceLocation()); D.SetIdentifier(&II, Loc); |