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
C++ keywords are not being reserved by the RPC spec parser making incorrect generated code appear in at least one case for iOS code:
/** * @param template - template * @return A SDLTemplateConfiguration object */ - (instancetype)initWithTemplate:(NSString *)template; /** * @param template - template * @param dayColorScheme - dayColorScheme * @param nightColorScheme - nightColorScheme * @return A SDLTemplateConfiguration object */ - (instancetype)initWithTemplate:(NSString *)template dayColorScheme:(nullable SDLTemplateColorScheme *)dayColorScheme nightColorScheme:(nullable SDLTemplateColorScheme *)nightColorScheme;
Here template is reserved for C++ and therefore this code will not compile for Obj-C++ projects.
template
The text was updated successfully, but these errors were encountered:
No branches or pull requests
C++ keywords are not being reserved by the RPC spec parser making incorrect generated code appear in at least one case for iOS code:
Here
template
is reserved for C++ and therefore this code will not compile for Obj-C++ projects.The text was updated successfully, but these errors were encountered: