diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-03-16 19:09:18 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-03-16 19:09:18 +0000 |
commit | ec1afbfd8e880d0169aab0ececa2e7e1611f4955 (patch) | |
tree | 695cec002eab0e6183c77d1a33e677800690807d /lib/Parse/ParseDecl.cpp | |
parent | 8c6fa84b2e4a30317b7b214a7657cb593d67773b (diff) |
Make sure we actually override ReadHeaderFileInfo when we meant to
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@98655 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/ParseDecl.cpp')
-rw-r--r-- | lib/Parse/ParseDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Parse/ParseDecl.cpp b/lib/Parse/ParseDecl.cpp index 12c5b6c704..cff35b72c4 100644 --- a/lib/Parse/ParseDecl.cpp +++ b/lib/Parse/ParseDecl.cpp @@ -110,7 +110,7 @@ AttributeList *Parser::ParseGNUAttributes(SourceLocation *EndLoc) { IdentifierInfo *AttrName = Tok.getIdentifierInfo(); SourceLocation AttrNameLoc = ConsumeToken(); - // check if we have a "paramterized" attribute + // check if we have a "parameterized" attribute if (Tok.is(tok::l_paren)) { ConsumeParen(); // ignore the left paren loc for now |