ocielliottc
ocielliottc
There is a feature, static_libs_only, that is set when the -static option is used. You can define a feature project based on this that can be used to specify different...
You can either modify `$ACE_ROOT/bin/MakeProjectCreator/default.features` and add the line: ``` ssl=1 ``` or You can add them to your MPC command line: `-features ssl=1` The `ace_for_tao` feature isn't required to...
That is similar. And I did run into that, but I worked around that by keeping a `OpenDDS::RTPS::RtpsDiscovery::StaticInitializer` as a data member. This test shows a segmentation fault.
I also don't think `set_default` is correct, but for a different reason. Given the definition of `AUnion`, the default should be `Xyz::bluex`. But, in `set_default`, it is set to `Xyz::redx`....
Am I wrong or is the use of _d() to set the discriminator before setting the member value not only unnecessary, but also wrong? This is `AUnion` and `StructAUnion` from...
Ah, ok. That makes things a little less complicated.
It would seem that we should be able to do away with setting the discriminator in the `>>` methods. As far as removing the temp, it isn't always that simple....
I'm not sure why we would need a two parameter setter. Calling `uni.rsv(std::move(tmp))` would set the discriminator. Right?
Ah, yep. I forgot about that.