rust-tcl icon indicating copy to clipboard operation
rust-tcl copied to clipboard

Clone should not duplicate the object

Open nwin opened this issue 10 years ago • 1 comments

A Tcl object is reference counted so it behaves like a Rc. Calling clone on a Rc does not copy the contents but just the smart pointer. The same should happen for tcl::Object.

nwin avatar May 16 '15 07:05 nwin

Ah ok, duly noted

AngryLawyer avatar May 18 '15 11:05 AngryLawyer