Classes derived from smart pointers should be treated as such
Brought to you by:
hpcoder
There several examples in Minsky - eg VariableValuePtr, which is a class derived from a shared_ptr. You need to declare it a is_smart_ptr to get it to process the smart pointer target. This should happen automatically.
There will be a similar issue with containers.
Anonymous