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
C++ Generator is marking all structures as "keyless" if the keys are inherited. C doesn't do this, causing a mismatch.
Removing the if(idl_is_keyless) function (line 150) in cyclonedds-cxx/src/idlcxx/src/traits.c fixes the problem but likely would break with actually keyless entries.
The text was updated successfully, but these errors were encountered:
C++ Generator is marking all structures as "keyless" if the keys are inherited. C doesn't do this, causing a mismatch.
Removing the
if(idl_is_keyless)
function (line 150) in cyclonedds-cxx/src/idlcxx/src/traits.c fixes the problem but likely would break with actually keyless entries.The text was updated successfully, but these errors were encountered: