You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The argument LANG of the function connextdds_add_application should allow C++14, C++17, C++20, C++23, etc. It's currently restricted to C++98 or C++11.
While this restriction makes sense in the code generation (connextdds_call_codegen), it should be possible to compile the code with newer C++ standards.
Suggested solutions
Allow for ex:
connextdds_add_application(
...
LANG "C++20"
...
)
The text was updated successfully, but these errors were encountered:
Description
The argument
LANG
of the functionconnextdds_add_application
should allow C++14, C++17, C++20, C++23, etc. It's currently restricted to C++98 or C++11.While this restriction makes sense in the code generation (
connextdds_call_codegen
), it should be possible to compile the code with newer C++ standards.Suggested solutions
Allow for ex:
The text was updated successfully, but these errors were encountered: