We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea2a26b commit 67fe1e6Copy full SHA for 67fe1e6
src/common/option.h
@@ -21,9 +21,9 @@ static inline void ffOptionInitModuleBaseInfo(
21
)
22
{
23
baseInfo->name = name;
24
- baseInfo->parseCommandOptions = parseCommandOptions;
25
- baseInfo->parseJsonObject = parseJsonObject;
26
- baseInfo->printModule = printModule;
+ baseInfo->parseCommandOptions = (__typeof__(baseInfo->parseCommandOptions)) parseCommandOptions;
+ baseInfo->parseJsonObject = (__typeof__(baseInfo->parseJsonObject)) parseJsonObject;
+ baseInfo->printModule = (__typeof__(baseInfo->printModule)) printModule;
27
}
28
29
typedef struct FFModuleArgs
0 commit comments