<div dir="auto"><div class="gmail_quote" dir="auto"><div dir="ltr" class="gmail_attr">On Mon, 4 Nov 2019, 12:54 Steve Lhomme, <<a href="mailto:robux4@ycbcr.xyz" rel="noreferrer noreferrer" target="_blank">robux4@ycbcr.xyz</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On 2019-11-04 12:42, Alexandre Janniaux wrote:<br>
> Hi,<br>
> <br>
> Maybe the commit message can be more explicit about what is the real<br>
> issue and how it is fixed. Otherwise, LGTM.<br>
<br>
Probably but I don't understand the issue. I only understand the symptom.<br></blockquote></div><div dir="auto"><br></div><div dir="auto">I hope my reply will be appropriate (maybe I won't explain anything you did not know, but since I wrote this class, this mail ringed a bell for me).</div><div dir="auto"><br></div><div dir="auto">It looks like QList::append( obj ) tries somewhere to assign a SoutModule (i.e. module1 = module2), but this assignment operator has not been defined manually (and is not generated automatically by the compiler since assigning this way would need to re-define member objects...that have been declared const, which is not possible by design).</div><div dir="auto"><br></div><div dir="auto">Usually, the solution would be to either:</div><div dir="auto"><div dir="auto">* find another method from QList that does not require the object to be assignable.</div></div><div dir="auto">* turn these const members as non-const</div><div dir="auto">* define ourself a assignment operator (but it does not seem possible since there are const members anyway).</div><div dir="auto"><br></div><div dir="auto">I have not read the QList documentation right now, so unless we really do *not* want SoutModule to be assignable (and I think we have no reason not to want it), removing the 'const' like Steve did seems sensible.</div><div dir="auto"><br></div><div dir="auto">Jérôme Froissart</div><div dir="auto"><br></div><div class="gmail_quote" dir="auto"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"></blockquote></div></div>