Suppose I have the need to do the following (This is just some imaginative code for discussion of the C++ standard, thus I won't discuss why I design it this way, so don't bother me with something like: your design is wrong.)
T* ptr = new T;
shared_ptr<T> p(ptr);
shared_ptr<T> q(ptr, SomeDeleterThatDoesnotDeleteButDoSomeOtherStuff());
Suppose the logic guarantees that p or some of its copies lives longer than all copies of q, so practically there won't be any problem. My question is, is it forbidden by C++ standard, e.g. explicitly stated as UB by C++ standard, for different shared_ptr counters to share the same address?
Thanks.

return q;? – Peter Wood Jun 18 '12 at 9:14shared_ptr1. to a dummy object that performs the action in its destructor or 2. having another custom deleter that performs the action. But those methods could be less efficient, if the set(s) ofqobjects changes rapidly relative to the set of proper ownersp. – Potatoswatter Jun 19 '12 at 4:39p. – icando Jun 19 '12 at 5:24pgoes out of scope it will deleteptr, and the returnedqwill point to an invalid object, with no way of knowing. This seems like a really bad idea. What are you trying to achieve? – Peter Wood Jun 19 '12 at 7:35