Please report new issues athttps://github.com/DOCGroup
Consider the following code: // IDL interface Foo { .... }; struct Bar { Foo a_foo; }; typedef Sequence<Foo> Baz; The following assignment will not increment the reference count as it should // C++ Bar some_bar = ....; Baz some_sequence = ...; some_sequence[0] = some_bar.a_foo; The problem is that the sequence element helper does not have a constructor from T_mgr.
Reassign, this one is handled in the sequenceupdate branch which will be made public with the x.5.2 release
Adding some info I got from Carlso some time ago: Fixed, unit test in string_sequence_element_ut.cpp
accept
Wed Apr 19 07:48:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>