Skip to content

Commit 84ab4e1

Browse files
committed
main/field,comment: add descripions to the members of sFieldDefinition
Signed-off-by: Masatake YAMATO <yamato@redhat.com>
1 parent e4d525b commit 84ab4e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

main/field.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -335,16 +335,16 @@ struct sFieldDefinition {
335335

336336
bool (* isValueAvailable) (const tagEntryInfo *const, const fieldDefinition *);
337337

338-
const char * getterValueType;
338+
const char * getterValueType; /* used in --_list-operators */
339339
struct _EsObject * (* getValueObject) (const tagEntryInfo *, const fieldDefinition *);
340-
const char * setterValueType;
340+
const char * setterValueType; /* used in --_list-operators */
341341

342342
/* Return es_false if passed value is acceptable.
343343
Return an error object is unacceptable. */
344344
struct _EsObject * (* checkValueForSetter) (const fieldDefinition *, const struct _EsObject *);
345345
struct _EsObject * (* setValueObject) (tagEntryInfo *, const fieldDefinition *, const struct _EsObject *);
346346

347-
fieldDataType dataType; /* used in json output */
347+
fieldDataType dataType; /* used in json output. See OP column in --list-fields. */
348348

349349
unsigned int ftype; /* Given from the main part */
350350
};

0 commit comments

Comments
 (0)