aboutsummaryrefslogtreecommitdiff
path: root/lib/Parse/ParseCXXInlineMethods.cpp
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2008-06-24 22:31:41 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2008-06-24 22:31:41 +0000
commite2fc9cf2ae41393e6b4812828a9158150bb33152 (patch)
tree348f800f3a2e5f468a40146cff7b67b5514928e0 /lib/Parse/ParseCXXInlineMethods.cpp
parent4cc18a4d5222e04bd568b1e3e4d86127dbbcdf3f (diff)
The only caller of this knows that the current token is l_brace, so this can be an assert; suggestion by Chris.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@52696 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/ParseCXXInlineMethods.cpp')
-rw-r--r--lib/Parse/ParseCXXInlineMethods.cpp13
1 files changed, 1 insertions, 12 deletions
diff --git a/lib/Parse/ParseCXXInlineMethods.cpp b/lib/Parse/ParseCXXInlineMethods.cpp
index b593f89668..ca0003440f 100644
--- a/lib/Parse/ParseCXXInlineMethods.cpp
+++ b/lib/Parse/ParseCXXInlineMethods.cpp
@@ -23,21 +23,10 @@ Parser::DeclTy *
Parser::ParseCXXInlineMethodDef(AccessSpecifier AS, Declarator &D) {
assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
"This isn't a function declarator!");
+ assert(Tok.is(tok::l_brace) && "Current token not a '{'!");
DeclTy *FnD = Actions.ActOnCXXMemberDeclarator(CurScope, AS, D, 0, 0, 0);
- // We should have an opening brace now.
- if (Tok.isNot(tok::l_brace)) {
- Diag(Tok, diag::err_expected_fn_body);
-
- // Skip over garbage, until we get to '{'. Don't eat the '{'.
- SkipUntil(tok::l_brace, true, true);
-
- // If we didn't find the '{', bail out.
- if (Tok.isNot(tok::l_brace))
- return FnD;
- }
-
// Consume the tokens and store them for later parsing.
getCurTopClassStack().push(LexedMethod(FnD));