cyclonedds
cyclonedds copied to clipboard
idlc C++ forgets the #include <array> generation in the generated header
When using a specification like:
module MY { typedef octet BinaryValue[256]; }
The generated C++ header will be something like:
#include
namespace MY { typedef std::array<uint8_t, 256> BinaryValue; }
In this header should also contain "#include
Hi @Arend-Abbing.
May I ask you to share cyclonedds, cyclonedds-cxx commit hashes or release versions?