Nikolay Mladenov wrote:
> On Wed, Sep 25, 2013 at 11:22 AM, Neal Becker wrote:
>
>> I've been trying to track down a memory leak. When I use the following:
>>
>> .def ("__iadd__", &hist_t::operator+=, bp::return_self<>())
>>
>
> but this is no different then any other function def with return
Hi,
I apologize for the delayed reply.
I was hoping to avoid linking the commandManager into the .so file. I am
trying to avoid that because then, I will have to do this for any other
module that I create and uses the commandManager. I would prefer to declare
it as extern or something similar if
On Wed, Sep 25, 2013 at 11:22 AM, Neal Becker wrote:
> I've been trying to track down a memory leak. When I use the following:
>
> .def ("__iadd__", &hist_t::operator+=, bp::return_self<>())
>
but this is no different then any other function def with return_self<>
policy (which i do a lot)?
wh