diff options
author | dim <dim@FreeBSD.org> | 2012-05-22 21:36:38 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2012-05-22 21:36:38 +0000 |
commit | e6d4a67235c1e62e3e292b1a167c5c6b9610a706 (patch) | |
tree | 1bfa44f5a9427d658426ac7786a70741e36d1bc8 /lib/Sema/DeclSpec.cpp | |
parent | 822bde9df508e0b9afac5e581b0d6ab403417a28 (diff) | |
download | FreeBSD-src-e6d4a67235c1e62e3e292b1a167c5c6b9610a706.zip FreeBSD-src-e6d4a67235c1e62e3e292b1a167c5c6b9610a706.tar.gz |
Vendor import of clang release_31 final r156748:
http://llvm.org/svn/llvm-project/cfe/tags/RELEASE_31/final@156748
Diffstat (limited to 'lib/Sema/DeclSpec.cpp')
-rw-r--r-- | lib/Sema/DeclSpec.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/Sema/DeclSpec.cpp b/lib/Sema/DeclSpec.cpp index fe63e35..b531acc 100644 --- a/lib/Sema/DeclSpec.cpp +++ b/lib/Sema/DeclSpec.cpp @@ -162,7 +162,6 @@ DeclaratorChunk DeclaratorChunk::getFunction(bool hasProto, bool isVariadic, SourceRange *ExceptionRanges, unsigned NumExceptions, Expr *NoexceptExpr, - CachedTokens *ExceptionSpecTokens, SourceLocation LocalRangeBegin, SourceLocation LocalRangeEnd, Declarator &TheDeclarator, @@ -227,10 +226,6 @@ DeclaratorChunk DeclaratorChunk::getFunction(bool hasProto, bool isVariadic, case EST_ComputedNoexcept: I.Fun.NoexceptExpr = NoexceptExpr; break; - - case EST_Delayed: - I.Fun.ExceptionSpecTokens = ExceptionSpecTokens; - break; } return I; } |