18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#import "OFEnumerator.h"
OF_ASSUME_NONNULL_BEGIN
/** @file */
/*
* Make clang's -Wdocumentation shut about about using @struct on someting it
* thinks is not a struct. Doxygen requires it this way.
*/
#ifdef __clang__
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wdocumentation"
#endif
/**
* @struct OFListItem OFList.h ObjFW/OFList.h
|
|
|
|
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#import "OFEnumerator.h"
OF_ASSUME_NONNULL_BEGIN
/** @file */
/*
* Make clang's -Wdocumentation shut up about about using @struct on something
* it thinks is not a struct. Doxygen requires it this way.
*/
#ifdef __clang__
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wdocumentation"
#endif
/**
* @struct OFListItem OFList.h ObjFW/OFList.h
|