forked from OSchip/llvm-project
[codeview] Improve some comments
This FIXME was already fixed, and these LF_* enum names were inconsistent. llvm-svn: 268683
This commit is contained in:
parent
777dc513a0
commit
745f3cbcfc
|
@ -299,7 +299,7 @@ struct FuncId {
|
|||
// Name: The null-terminated name follows.
|
||||
};
|
||||
|
||||
// LF_CLASS, LF_STRUCT, LF_INTERFACE
|
||||
// LF_CLASS, LF_STRUCTURE, LF_INTERFACE
|
||||
struct ClassType {
|
||||
ulittle16_t MemberCount; // Number of members in FieldList.
|
||||
ulittle16_t Properties; // ClassOptions bitset
|
||||
|
@ -501,6 +501,7 @@ struct OneMethod {
|
|||
bool isIntroducedVirtual() const { return Attrs.isIntroducedVirtual(); }
|
||||
};
|
||||
|
||||
// LF_METHODLIST
|
||||
struct MethodListEntry {
|
||||
MemberAttributes Attrs;
|
||||
ulittle16_t Padding;
|
||||
|
@ -559,7 +560,7 @@ struct BaseClass {
|
|||
// BaseOffset: LF_NUMERIC encoded byte offset of base from derived.
|
||||
};
|
||||
|
||||
// LF_VBCLASS | LV_IVBCLASS
|
||||
// LF_VBCLASS, LF_IVBCLASS
|
||||
struct VirtualBaseClass {
|
||||
MemberAttributes Attrs; // Access control attributes, etc.
|
||||
TypeIndex BaseType; // Base class type
|
||||
|
|
|
@ -200,7 +200,6 @@ public:
|
|||
: CVTD(CVTD), W(W), PrintRecordBytes(PrintRecordBytes) {}
|
||||
|
||||
/// CVTypeVisitor overrides.
|
||||
/// FIXME: Bury these in the .cc file to hide implementation details.
|
||||
#define TYPE_RECORD(ClassName, LeafEnum) \
|
||||
void visit##ClassName(TypeLeafKind LeafType, const ClassName *Record, \
|
||||
ArrayRef<uint8_t> LeafData);
|
||||
|
|
Loading…
Reference in New Issue