diff options
author | Douglas Gregor <dgregor@apple.com> | 2008-11-21 16:10:08 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2008-11-21 16:10:08 +0000 |
commit | c19923dda3d28f67aab4726cd40bb07032758383 (patch) | |
tree | b82dfa31e8d7c8e2f78d85bf6032f4b7ceefabd3 /lib/Parse/ParseDeclCXX.cpp | |
parent | 1ca50c3f541dd637063b9d186a7ea193e3440a48 (diff) |
Tiny fix to the parsing of linkage-specifications
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59820 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/ParseDeclCXX.cpp')
-rw-r--r-- | lib/Parse/ParseDeclCXX.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Parse/ParseDeclCXX.cpp b/lib/Parse/ParseDeclCXX.cpp index 560edc131b..17f5763c1d 100644 --- a/lib/Parse/ParseDeclCXX.cpp +++ b/lib/Parse/ParseDeclCXX.cpp @@ -98,7 +98,7 @@ Parser::DeclTy *Parser::ParseNamespace(unsigned Context) { /// 'extern' string-literal declaration /// Parser::DeclTy *Parser::ParseLinkage(unsigned Context) { - assert(Tok.is(tok::string_literal) && "Not a stringliteral!"); + assert(Tok.is(tok::string_literal) && "Not a string literal!"); llvm::SmallVector<char, 8> LangBuffer; // LangBuffer is guaranteed to be big enough. LangBuffer.resize(Tok.getLength()); @@ -110,7 +110,7 @@ Parser::DeclTy *Parser::ParseLinkage(unsigned Context) { SourceLocation LBrace, RBrace; if (Tok.isNot(tok::l_brace)) { - D = ParseDeclaration(Context); + D = ParseDeclarationOrFunctionDefinition(); } else { LBrace = ConsumeBrace(); while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) { |