We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Converting following code causes the converter to mangle the else if, producing "elseif" (one word) in the output, obviously breaking compilation:
typedef struct AVRational{ int num; ///< numerator int den; ///< denominator } AVRational; int av_rescale_q(int a, AVRational bq, AVRational cq); int main() { AVRational framerate = {1,25}; if (1) { int next_dts = av_rescale_q(1, (AVRational){1, 1000000}, framerate); } else if (2) { // nada! } return 0; }
The issue does not seem to appear if the inline struct is the third function parameter, in this case anyway.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Converting following code causes the converter to mangle the else if, producing "elseif" (one word) in the output, obviously breaking compilation:
The issue does not seem to appear if the inline struct is the third function parameter, in this case anyway.
The text was updated successfully, but these errors were encountered: