octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Thread-safety issues in QtHandles


From: John W. Eaton
Subject: Re: Thread-safety issues in QtHandles
Date: Mon, 31 Oct 2011 14:03:41 -0400

Also, one thing I noticed in my the simple example is that

  foo (shared_ptr<foo_rep> new_rep) : rep (new_rep) { }

should probably be

  foo (const shared_ptr<foo_rep>& new_rep) : rep (new_rep) { }

instead.

jwe


reply via email to

[Prev in Thread] Current Thread [Next in Thread]