Update some comments.

llvm-svn: 52957
This commit is contained in:
Argyrios Kyrtzidis 2008-07-01 11:22:40 +00:00
parent ed9834272f
commit 2a40249b65
1 changed files with 2 additions and 2 deletions

View File

@ -57,10 +57,10 @@ public:
++FieldCount.back();
}
/// getNumField - The number of fields added to the currently parsed class.
/// getCurNumField - The number of fields added to the currently parsed class.
size_t getCurNumFields() const { return FieldCount.back(); }
/// getFields - Pointer to array of fields added to the currently parsed
/// getCurFields - Pointer to array of fields added to the currently parsed
/// class.
CXXFieldDecl **getCurFields() { return &*(Fields.end() - getCurNumFields()); }