Skip to content

Commit ee85cd0

Browse files
committed
tidy
1 parent fedfe34 commit ee85cd0

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

include/mrdox/Metadata/Enum.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ struct EnumInfo : SymbolInfo
7676
// this will be "short".
7777
llvm::Optional<TypeInfo> BaseType;
7878

79-
llvm::SmallVector<EnumValueInfo, 4> Members; // AnyList of enum members.
79+
llvm::SmallVector<EnumValueInfo, 4> Members; // List of enum members.
8080

8181
//--------------------------------------------
8282

include/mrdox/Metadata/Function.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ struct FunctionInfo : SymbolInfo
9595
bool IsMethod = false; // Indicates whether this function is a class method.
9696
Reference Parent; // Reference to the parent class decl for this method.
9797
TypeInfo ReturnType; // Info about the return type of this function.
98-
llvm::SmallVector<FieldTypeInfo, 4> Params; // AnyList of parameters.
98+
llvm::SmallVector<FieldTypeInfo, 4> Params; // List of parameters.
9999

100100
// Access level for this method (public, private, protected, none).
101101
// AS_public is set as default because the bitcode writer requires the enum

include/mrdox/Metadata/Info.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ struct Info
4343
*/
4444
llvm::SmallString<16> Name;
4545

46-
/** In-order AnyList of parent namespaces.
46+
/** In-order List of parent namespaces.
4747
*/
4848
llvm::SmallVector<Reference, 4> Namespace;
4949

include/mrdox/Metadata/Record.hpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ struct RecordInfo : SymbolInfo
5959

6060
Bits<RecFlags0> specs;
6161

62-
llvm::SmallVector<MemberTypeInfo, 4> Members; // AnyList of info about record members.
63-
llvm::SmallVector<Reference, 4> Parents; // AnyList of base/parent records
62+
llvm::SmallVector<MemberTypeInfo, 4> Members; // List of info about record members.
63+
llvm::SmallVector<Reference, 4> Parents; // List of base/parent records
6464
// (does not include virtual parents).
65-
llvm::SmallVector<Reference, 4> VirtualParents; // AnyList of virtual base/parent records.
65+
llvm::SmallVector<Reference, 4> VirtualParents; // List of virtual base/parent records.
6666

67-
std::vector<BaseRecordInfo> Bases; // AnyList of base/parent records; this includes inherited methods and attributes
67+
std::vector<BaseRecordInfo> Bases; // List of base/parent records; this includes inherited methods and attributes
6868

69-
/** AnyList of friend functions.
69+
/** List of friend functions.
7070
*/
7171
llvm::SmallVector<SymbolID, 4> Friends;
7272

source/api/AST/BitcodeIDs.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ struct BitCodeConstants
4040
static constexpr unsigned char Signature[4] = {'M', 'R', 'D', 'X'};
4141
};
4242

43-
/** AnyList of block identifiers.
43+
/** List of block identifiers.
4444
4545
New IDs need to be added to both the enum
4646
here and the relevant IdNameMap in the

0 commit comments

Comments
 (0)