Change line endings, CRLF -> LF.

llvm-svn: 54530
This commit is contained in:
Argyrios Kyrtzidis 2008-08-08 16:58:19 +00:00
parent 7fb867e5e0
commit 37088116e7
1 changed files with 6 additions and 6 deletions

View File

@ -53,12 +53,12 @@ public:
SourceLocation L, IdentifierInfo *Id,
ScopedDecl *PrevDecl);
const CXXFieldDecl *getMember(unsigned i) const {
return cast<const CXXFieldDecl>(RecordDecl::getMember(i));
}
CXXFieldDecl *getMember(unsigned i) {
return cast<CXXFieldDecl>(RecordDecl::getMember(i));
}
const CXXFieldDecl *getMember(unsigned i) const {
return cast<const CXXFieldDecl>(RecordDecl::getMember(i));
}
CXXFieldDecl *getMember(unsigned i) {
return cast<CXXFieldDecl>(RecordDecl::getMember(i));
}
/// getMember - If the member doesn't exist, or there are no members, this
/// function will return 0;