<div dir="ltr"><div><div><div><div><div>Hi,<br><br></div><b>My requirement:</b><br></div>I need to create new Interest from an existing Interest so that all properties will be copied to newly created Interest, than I need to set its name using <span style="font-family:tahoma,sans-serif">setName</span> method. I know following two ways to do this:<br><br></div><b>Method #1:</b> Creating empty Interest and setting name like this:<br><div style="margin-left:40px"><span style="font-family:tahoma,sans-serif">const Name& tempName = "---";<br>shared_ptr<Interest> tempInterest = make_shared<Interest>();<br>tempInterest->setName(tempName);</span><br></div>This method does not copy other properties, but only creates empty Interest and sets its name. And it works fine.<br><br></div><b>Method #2:</b> Creating Interest from an existing Interest like this:<br><div style="margin-left:40px"><span style="font-family:tahoma,sans-serif">const Name& tempName = "---";<br>Interest tempInterest = Interest(interest.wireEncode());<br>tempInterest.setName(tempName);<br></span></div><br></div><b>My problem:</b><br><div><div>Now, I know Method#2 is the official way that meets my requirements. But the thing is, when I use method#2 it gives error on <span style="font-family:arial,helvetica,sans-serif"><b>findOrInsert</b></span> method in <span style="font-family:arial,helvetica,sans-serif"><b>pit.cpp</b></span> file and I don't understand its reason.<br><div style="margin-left:40px"><span style="font-family:tahoma,sans-serif">auto entry = make_shared<Entry>(interest);</span><br></div><br>Can anybody help me with this? Why I'm getting this error? Which method should I continue with?<br><div><div><div><div><div><div><div><div><div><div><br>-- <br><div class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><span style="font-family:georgia,serif">Regards,<br></span></div><div><span style="font-family:georgia,serif">Mudasir Qazi<br></span></div></div></div></div></div></div></div></div></div>
</div></div></div></div></div></div></div></div></div></div></div></div></div>