@@ -108,27 +108,27 @@ class ArchiveMember : public ilist_node<ArchiveMember> {
108
108
// / @brief Get the data content of the archive member
109
109
const char * getData () const { return data; }
110
110
111
- // / @returns true if the member is a SVR4 (non-LLVM) symbol table
111
+ // / @returns true iff the member is a SVR4 (non-LLVM) symbol table
112
112
// / @brief Determine if this member is a SVR4 symbol table.
113
113
bool isSVR4SymbolTable () const { return flags&SVR4SymbolTableFlag; }
114
114
115
- // / @returns true if the member is a BSD4.4 (non-LLVM) symbol table
115
+ // / @returns true iff the member is a BSD4.4 (non-LLVM) symbol table
116
116
// / @brief Determine if this member is a BSD4.4 symbol table.
117
117
bool isBSD4SymbolTable () const { return flags&BSD4SymbolTableFlag; }
118
118
119
- // / @returns true if the archive member is the LLVM symbol table
119
+ // / @returns true iff the archive member is the LLVM symbol table
120
120
// / @brief Determine if this member is the LLVM symbol table.
121
121
bool isLLVMSymbolTable () const { return flags&LLVMSymbolTableFlag; }
122
122
123
- // / @returns true if the archive member is the ar(1) string table
123
+ // / @returns true iff the archive member is the ar(1) string table
124
124
// / @brief Determine if this member is the ar(1) string table.
125
125
bool isStringTable () const { return flags&StringTableFlag; }
126
126
127
- // / @returns true if the archive member is a bitcode file.
127
+ // / @returns true iff the archive member is a bitcode file.
128
128
// / @brief Determine if this member is a bitcode file.
129
129
bool isBitcode () const { return flags&BitcodeFlag; }
130
130
131
- // / @returns true if the file name contains a path (directory) component.
131
+ // / @returns true iff the file name contains a path (directory) component.
132
132
// / @brief Determine if the member has a path
133
133
bool hasPath () const { return flags&HasPathFlag; }
134
134
@@ -137,7 +137,7 @@ class ArchiveMember : public ilist_node<ArchiveMember> {
137
137
// / separator character (/). To avoid this, a "long format" member name is
138
138
// / allowed that doesn't have this restriction. This method determines if
139
139
// / that "long format" is used for this member.
140
- // / @returns true if the file name uses the long form
140
+ // / @returns true iff the file name uses the long form
141
141
// / @brief Determine if the member has a long file name
142
142
bool hasLongFilename () const { return flags&HasLongFilenameFlag; }
143
143
0 commit comments