Don't repeat name in comments.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240516 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola
2015-06-24 03:19:35 +00:00
parent 0810814bcc
commit 9073b8fb67

View File

@@ -35,8 +35,8 @@ class symbol_iterator;
class SectionRef; class SectionRef;
typedef content_iterator<SectionRef> section_iterator; typedef content_iterator<SectionRef> section_iterator;
/// RelocationRef - This is a value type class that represents a single /// This is a value type class that represents a single relocation in the list
/// relocation in the list of relocations in the object file. /// of relocations in the object file.
class RelocationRef { class RelocationRef {
DataRefImpl RelocationPimpl; DataRefImpl RelocationPimpl;
const ObjectFile *OwningObject; const ObjectFile *OwningObject;
@@ -71,8 +71,8 @@ public:
}; };
typedef content_iterator<RelocationRef> relocation_iterator; typedef content_iterator<RelocationRef> relocation_iterator;
/// SectionRef - This is a value type class that represents a single section in /// This is a value type class that represents a single section in the list of
/// the list of sections in the object file. /// sections in the object file.
class SectionRef { class SectionRef {
friend class SymbolRef; friend class SymbolRef;
DataRefImpl SectionPimpl; DataRefImpl SectionPimpl;
@@ -116,8 +116,8 @@ public:
const ObjectFile *getObject() const; const ObjectFile *getObject() const;
}; };
/// SymbolRef - This is a value type class that represents a single symbol in /// This is a value type class that represents a single symbol in the list of
/// the list of symbols in the object file. /// symbols in the object file.
class SymbolRef : public BasicSymbolRef { class SymbolRef : public BasicSymbolRef {
friend class SectionRef; friend class SectionRef;
@@ -170,9 +170,9 @@ public:
} }
}; };
/// ObjectFile - This class is the base class for all object file types. /// This class is the base class for all object file types. Concrete instances
/// Concrete instances of this object are created by createObjectFile, which /// of this object are created by createObjectFile, which figures out which type
/// figures out which type to create. /// to create.
class ObjectFile : public SymbolicFile { class ObjectFile : public SymbolicFile {
virtual void anchor(); virtual void anchor();
ObjectFile() = delete; ObjectFile() = delete;